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; }) {