Skip to content

Commit 361f54c

Browse files
authored
Fix split button gui, should always have a secondary button (#79)
* Fix split button gui, should always have a secondary button * Auto build assets [skip ci] --------- Co-authored-by: frankdekker <frankdekker@users.noreply.github.com>
1 parent 93c529c commit 361f54c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

frontend/src/components/LogFile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const navigate = (identifier: string, multiSelect: boolean) => {
4747

4848
<template>
4949
<!-- LogFile -->
50-
<button-group ref="toggleRef" alignment="right" :split="file.can_download || file.can_delete" class="mb-1" :hide-on-selected="true">
50+
<button-group ref="toggleRef" alignment="right" :split="true" class="mb-1" :hide-on-selected="true">
5151
<template v-slot:btn_left>
5252
<a @click="(event) => {event.preventDefault(); navigate(file.identifier, event.ctrlKey || event.metaKey)}"
5353
href="javascript:"

frontend/src/components/LogFolder.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ onMounted(() => expanded.value = props.expand);
4343
<template>
4444
<!-- LogFolder -->
4545
<div class="folder-group mt-1" :aria-expanded="expanded">
46-
<button-group ref="toggleRef" alignment="right" :split="folder.can_download || folder.can_delete" :hide-on-selected="true">
46+
<button-group ref="toggleRef" alignment="right" :split="true" :hide-on-selected="true">
4747
<template v-slot:btn_left>
4848
<button type="button" class="btn btn-outline-primary text-start w-100" @click="expanded = !expanded">
4949
<i class="slv-indicator bi bi-chevron-right me-2"></i>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"src/main.ts": {
3-
"file": "assets/main-CW3DbKXg.js",
3+
"file": "assets/main-DTYONNgm.js",
44
"name": "main",
55
"src": "src/main.ts",
66
"isEntry": true
77
},
88
"style.css": {
9-
"file": "assets/style-IB-vbMx9.css",
9+
"file": "assets/style-CvzkwpHw.css",
1010
"src": "style.css"
1111
}
1212
}

src/Resources/public/assets/main-CW3DbKXg.js renamed to src/Resources/public/assets/main-DTYONNgm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Resources/public/assets/style-IB-vbMx9.css renamed to src/Resources/public/assets/style-CvzkwpHw.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)