From f64d3942d7b3528557aa5aedb58d7f633b6e716b Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 22 Aug 2021 16:18:53 +0900 Subject: [PATCH] :art: --- src/client/components/dialog.vue | 1 - src/client/directives/tooltip.ts | 2 +- src/client/os.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/client/components/dialog.vue b/src/client/components/dialog.vue index 0a7508aee..f3611f050 100644 --- a/src/client/components/dialog.vue +++ b/src/client/components/dialog.vue @@ -10,7 +10,6 @@ -
diff --git a/src/client/directives/tooltip.ts b/src/client/directives/tooltip.ts index b45321660..ee690558a 100644 --- a/src/client/directives/tooltip.ts +++ b/src/client/directives/tooltip.ts @@ -29,7 +29,7 @@ export default { ev.preventDefault(); ev.stopPropagation(); dialog({ - type: 'help', + type: 'info', text: binding.value, }); return false; diff --git a/src/client/os.ts b/src/client/os.ts index 1e1d950a1..812533279 100644 --- a/src/client/os.ts +++ b/src/client/os.ts @@ -215,7 +215,7 @@ export function modalPageWindow(path: string) { } export function dialog(props: { - type: 'error' | 'info' | 'success' | 'warning' | 'waiting' | 'help'; + type: 'error' | 'info' | 'success' | 'warning' | 'waiting'; title?: string | null; text?: string | null; }) {