Skip to content

Commit

Permalink
is → should
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Mar 2, 2024
1 parent 8924e21 commit b089941
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/help/HelpDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
}}{{ page.name }}
</q-toolbar-title>
<q-btn
v-if="page.isShowOpenLogDirectoryButton"
v-if="page.shouldShowOpenLogDirectoryButton"
unelevated
color="toolbar-button"
text-color="toolbar-button-display"
Expand Down Expand Up @@ -100,7 +100,7 @@ type PageItem = {
parent?: string;
component: Component;
props?: Record<string, unknown>;
isShowOpenLogDirectoryButton?: boolean;
shouldShowOpenLogDirectoryButton?: boolean;
};
type PageSeparator = {
type: "separator";
Expand Down Expand Up @@ -218,7 +218,7 @@ const pagedata = computed(() => {
props: {
markdown: contact.value,
},
isShowOpenLogDirectoryButton: true,
shouldShowOpenLogDirectoryButton: true,
},
];
// エンジンが一つだけの場合は従来の表示のみ
Expand Down

0 comments on commit b089941

Please sign in to comment.