diff options
author | Zero~Informatique | 2019-12-24 02:22:56 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-24 02:22:56 +0100 |
commit | 7c2576b0cfb0a15b2a14f6f5ea96de16f0c23b44 (patch) | |
tree | 1096617e6795916aa90e81ab50a7736f7d656943 /viewer/src/components/index.ts | |
parent | 139e2b76d23b13d2b3bb70fb1d5c1ea9dc255513 (diff) | |
download | ldgallery-7c2576b0cfb0a15b2a14f6f5ea96de16f0c23b44.tar.gz |
viewer: Plugin for Optional chaining and Coalesce. Implemented tag operations (intersection, addition, substraction). Unified Tag.Search
Diffstat (limited to 'viewer/src/components/index.ts')
-rw-r--r-- | viewer/src/components/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/components/index.ts b/viewer/src/components/index.ts index 1406b34..4586f62 100644 --- a/viewer/src/components/index.ts +++ b/viewer/src/components/index.ts | |||
@@ -17,6 +17,6 @@ requireComponent.keys().forEach(fileName => { | |||
17 | // Look for the component options on `.default`, which will | 17 | // Look for the component options on `.default`, which will |
18 | // exist if the component was exported with `export default`, | 18 | // exist if the component was exported with `export default`, |
19 | // otherwise fall back to module's root. | 19 | // otherwise fall back to module's root. |
20 | componentConfig.default || componentConfig | 20 | componentConfig.default ?? componentConfig |
21 | ) | 21 | ) |
22 | }) \ No newline at end of file | 22 | }) \ No newline at end of file |