Skip to content

Commit 59a489f

Browse files
authored
Merge pull request openWB#800 from benderl/fixes
Fixes
2 parents f2be9b8 + 260f992 commit 59a489f

File tree

3 files changed

+186
-196
lines changed

3 files changed

+186
-196
lines changed

src/components/OpenwbBaseCopyToClipboard.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</span>
1010
<font-awesome-icon
1111
v-if="copySupported"
12+
class="ml-1"
1213
:icon="isCopied ? ['fas', 'clipboard-check'] : ['fas', 'clipboard']"
1314
/>
1415
</span>
@@ -40,7 +41,7 @@ export default {
4041
return this.$refs["content"] ? this.$refs["content"].innerText.trim() : "";
4142
},
4243
isCopied() {
43-
return copied.value;
44+
return copied.value && text.value === this.contentText;
4445
},
4546
copySupported() {
4647
return isSupported.value;

src/views/DebugConfig.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ export default {
8484
title: "Protokoll des SmartHome Dienstes",
8585
fileName: "/openWB/ramdisk/smarthome.log",
8686
},
87+
{
88+
title: "Protokoll der Sicherung",
89+
fileName: "/openWB/data/log/backup.log",
90+
},
91+
{
92+
title: "Protokoll der Wiederherstellung",
93+
fileName: "/openWB/data/log/restore.log",
94+
},
8795
{
8896
title: "Protokoll der Datenmigration",
8997
fileName: "/openWB/data/log/data_migration.log",

0 commit comments

Comments
 (0)