diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-05-05 13:14:27 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-31 12:11:49 -0300 |
commit | b76fdc3b5ef0ce800c78014bfb879a5acc0329a9 (patch) | |
tree | fd98e4619d0ad0379a77af2f7089dbd9354a7d74 /src/util | |
parent | 5131c2d7928bb93118b40008513488e3e8d98fc7 (diff) |
client: show results from generic search
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/search-spec.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/search-spec.js b/src/util/search-spec.js index e8bc7571..d8ae936e 100644 --- a/src/util/search-spec.js +++ b/src/util/search-spec.js @@ -42,6 +42,9 @@ export const searchSpec = { primaryName: thing.name, + color: + thing.color, + additionalNames: (Object.hasOwn(thing, 'additionalNames') ? thing.additionalNames.map(entry => entry.name) @@ -74,6 +77,7 @@ export const searchSpec = { store: [ 'primaryName', 'artwork', + 'color', ], }, |