We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3416192 commit 6e53f4bCopy full SHA for 6e53f4b
awesome_dashboard/static/src/dashboard/dashboard.js
@@ -19,7 +19,10 @@ class AwesomeDashboard extends Component {
19
this.statistics = useService("awesome_dashboard.statistics");
20
this.state = useState({stats: this.statistics});
21
22
- this.items = items
+ for(let item of items) {
23
+ registry.category("awesome_dashboard").add(item.id, item);
24
+ }
25
+ this.items = registry.category("awesome_dashboard").getAll();
26
}
27
28
openCustomers() {
0 commit comments