diff --git a/client/app/components/dashboards/add-widget-dialog.html b/client/app/components/dashboards/add-widget-dialog.html index f5ad55cc13..90676dfbf1 100644 --- a/client/app/components/dashboards/add-widget-dialog.html +++ b/client/app/components/dashboards/add-widget-dialog.html @@ -15,7 +15,7 @@
Preview: -

+

diff --git a/client/app/components/dashboards/add-widget-dialog.js b/client/app/components/dashboards/add-widget-dialog.js index 055055928a..e02d1bbacd 100644 --- a/client/app/components/dashboards/add-widget-dialog.js +++ b/client/app/components/dashboards/add-widget-dialog.js @@ -1,5 +1,6 @@ import { debounce } from 'underscore'; import template from './add-widget-dialog.html'; +import './add-widget-dialog.less'; const AddWidgetDialog = { template, diff --git a/client/app/components/dashboards/add-widget-dialog.less b/client/app/components/dashboards/add-widget-dialog.less new file mode 100644 index 0000000000..d156595123 --- /dev/null +++ b/client/app/components/dashboards/add-widget-dialog.less @@ -0,0 +1,3 @@ +.word-wrap-break { + word-wrap: break-word; +} \ No newline at end of file diff --git a/client/app/components/dashboards/edit-text-box.html b/client/app/components/dashboards/edit-text-box.html index 850a96cf9c..8a4e621659 100644 --- a/client/app/components/dashboards/edit-text-box.html +++ b/client/app/components/dashboards/edit-text-box.html @@ -8,7 +8,7 @@
Preview: -

+

diff --git a/client/app/components/dashboards/widget.js b/client/app/components/dashboards/widget.js index ddefe33f00..ecd061464b 100644 --- a/client/app/components/dashboards/widget.js +++ b/client/app/components/dashboards/widget.js @@ -1,6 +1,7 @@ import template from './widget.html'; import editTextBoxTemplate from './edit-text-box.html'; import './widget.less'; +import './add-widget-dialog.less'; const EditTextBoxComponent = { template: editTextBoxTemplate,