diff --git a/ui/src/component/ConfirmDialog.tsx b/ui/src/component/ConfirmDialog.tsx index bf85fcf..20cf895 100644 --- a/ui/src/component/ConfirmDialog.tsx +++ b/ui/src/component/ConfirmDialog.tsx @@ -19,14 +19,25 @@ export default function ConfirmDialog({title, text, fClose, fOnSubmit}: IProps) fClose(); }; return ( - + {title} {text} - - + diff --git a/ui/src/component/DefaultPage.tsx b/ui/src/component/DefaultPage.tsx index b66b17a..536e930 100644 --- a/ui/src/component/DefaultPage.tsx +++ b/ui/src/component/DefaultPage.tsx @@ -10,11 +10,13 @@ interface IProps { buttonDisabled?: boolean; maxWidth?: number; hideButton?: boolean; + buttonId?: string; } const DefaultPage: SFC = ({ title, buttonTitle, + buttonId, fButton, buttonDisabled = false, maxWidth = 700, @@ -29,6 +31,7 @@ const DefaultPage: SFC = ({ {hideButton ? null : ( - + - - diff --git a/ui/src/component/Message.tsx b/ui/src/component/Message.tsx index da76db0..daeb79e 100644 --- a/ui/src/component/Message.tsx +++ b/ui/src/component/Message.tsx @@ -51,7 +51,7 @@ interface IProps { function Message({fDelete, classes, title, date, content, image}: IProps & Style) { return ( -
+
- + {title} - + - +
- {content} + + {content} +
diff --git a/ui/src/component/Navigation.tsx b/ui/src/component/Navigation.tsx index 5965f53..692b134 100644 --- a/ui/src/component/Navigation.tsx +++ b/ui/src/component/Navigation.tsx @@ -51,7 +51,10 @@ class Navigation extends Component { ? null : apps.map((app) => { return ( - + @@ -69,10 +72,13 @@ class Navigation extends Component { ]; return ( - +
- + diff --git a/ui/src/component/SettingsDialog.tsx b/ui/src/component/SettingsDialog.tsx index eb6e8a8..05683db 100644 --- a/ui/src/component/SettingsDialog.tsx +++ b/ui/src/component/SettingsDialog.tsx @@ -27,10 +27,15 @@ export default class SettingsDialog extends Component { fClose(); }; return ( - + Change Password {