aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchModal.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2023-01-21 16:55:37 +1100
committerTerry Truong <terry06890@gmail.com>2023-01-21 16:55:37 +1100
commitac4bb9210616343bdca0d2f7e1620e66d15f1c95 (patch)
tree94b250238ff015d98dae6ff7d00d0c481c1de760 /src/components/SearchModal.vue
parentc318c4cedf3f50c21c403649945c2abbbc30a89e (diff)
Adjust documentation for layout/search handling
Diffstat (limited to 'src/components/SearchModal.vue')
-rw-r--r--src/components/SearchModal.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index addb764..38aff76 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -199,6 +199,8 @@ async function resolveSearch(eventTitle: string){
emit('net-wait'); // Allows the parent component to show a loading-indicator
let responseObj: EventInfoJson | null = await queryServer(urlParams);
emit('net-get');
+
+ // Notify parent
if (responseObj != null){
let eventInfo = jsonToEventInfo(responseObj);
if (store.reqImgs && eventInfo.event.imgId == null){