Skip to content

Commit

Permalink
Merge pull request #54 from bfritscher/feat-fix-darkmode-edit-btn
Browse files Browse the repository at this point in the history
fix: make edit button visible in dark mode
  • Loading branch information
bfritscher authored Apr 10, 2024
2 parents 7d2194f + d4a0aef commit 47da1f7
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typesense-dashboard",
"version": "1.7.0",
"version": "1.8.0",
"description": "A Typesense Dashboard to manage and browse collections.",
"productName": "Typesense-Dashboard",
"author": "Boris Fritscher <boris@fritscher.ch>",
Expand Down
1 change: 0 additions & 1 deletion src/pages/Aliases.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
<q-td class="text-right">
<q-btn
flat
color="primary"
@click="editAlias(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down
1 change: 0 additions & 1 deletion src/pages/AnalyticsRules.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
<q-td class="text-right">
<q-btn
flat
color="primary"
@click="editRule(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down
1 change: 0 additions & 1 deletion src/pages/Overrides.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
<q-td class="text-right">
<q-btn
flat
color="primary"
@click="editOverride(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down
3 changes: 1 addition & 2 deletions src/pages/SearchPresets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
<q-td class="text-right">
<q-btn
flat
color="primary"
@click="editSearchPreset(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down Expand Up @@ -158,7 +157,7 @@ export default defineComponent({
return this.$store.state.node.data.searchPresets
.map((p:any) => p.name)
.includes(this.preset.name);
},
},
},
mounted() {
void this.$store.dispatch('node/getSearchPresets');
Expand Down
1 change: 0 additions & 1 deletion src/pages/Stopwords.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
<q-td class="text-right text-no-wrap">
<q-btn
flat
color="primary"
@click="editStopwordsSet(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down
3 changes: 1 addition & 2 deletions src/pages/Synonyms.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
hint="Enter a symbol (eg: +, - ) and press enter"
>
</q-select>

<q-input
filled
stack-label
Expand Down Expand Up @@ -123,7 +123,6 @@
<q-td class="text-right">
<q-btn
flat
color="primary"
@click="editSynonym(props.row)"
icon="sym_s_edit"
title="Edit"
Expand Down

0 comments on commit 47da1f7

Please sign in to comment.