projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a28e6f3
)
Fix scrollbars on fullscreen dashboard dashlet
author
Coleman Watts
<coleman@civicrm.org>
Wed, 7 Apr 2021 01:13:40 +0000
(21:13 -0400)
committer
Coleman Watts
<coleman@civicrm.org>
Wed, 7 Apr 2021 01:13:40 +0000
(21:13 -0400)
Apparently angular dialogService expects templates to be wrapped in an outer div,
as that becomes the .ui-dialog-content element.
ang/crmDashboard/FullscreenDialog.html
patch
|
blob
|
blame
|
history
diff --git
a/ang/crmDashboard/FullscreenDialog.html
b/ang/crmDashboard/FullscreenDialog.html
index f96fd82e594c11fd9afacf0d99dc853d022357ac..396d9f85098e903534d927ff12197c4dfd00f5b1 100644
(file)
--- a/
ang/crmDashboard/FullscreenDialog.html
+++ b/
ang/crmDashboard/FullscreenDialog.html
@@
-1
+1,3
@@
-<crm-dashlet dashlet="model" is-fullscreen="true"></crm-dashlet>
+<div>
+ <crm-dashlet dashlet="model" is-fullscreen="true"></crm-dashlet>
+</div>