Skip to content

Commit

Permalink
SGD8-2856: Fix features initially not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart Van Vaerenbergh authored and lennartvava committed Oct 10, 2024
1 parent 95a789b commit ec057e6
Show file tree
Hide file tree
Showing 12 changed files with 71 additions and 67 deletions.
2 changes: 1 addition & 1 deletion dist/odp-search.3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/odp-search.3.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/odp-search.3.min.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/odp-search.4.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/odp-search.4.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/odp-search.4.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/odp-search.4.min.js.map

Large diffs are not rendered by default.

76 changes: 38 additions & 38 deletions dist/odp-search.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/odp-search.js.map

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions dist/odp-search.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/odp-search.min.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/components/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ export default Vue.extend({
},
watch: {
items: function (): void {
this.setFeatures()
if (this.olMap) {
this.setFeatures()
}
},
show: function (show): void {
// Map container must be visible before initialization
Expand Down

0 comments on commit ec057e6

Please sign in to comment.