Skip to content

Commit

Permalink
[qa] Fix glitches
Browse files Browse the repository at this point in the history
  • Loading branch information
frankrousseau committed Sep 19, 2023
1 parent b29163d commit d6f9463
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/previews/VideoProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export default {
isFrameNumberVisible: false,
isTileLoading: false,
hoverFrame: 0,
progressDragging: false,
width: 0,
domEvents: [
['mousemove', this.doProgressDrag],
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ const mutations = {
state.assetSearchQueries = userFilters.asset?.[production.id] || []

state.assetSearchFilterGroups =
userFilterGroups.asset?.[production.id] || []
userFilterGroups?.asset?.[production.id] || []
},

[ADD_ASSET](state, { taskTypeMap, taskMap, personMap, production, asset }) {
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/shots.js
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ const mutations = {

state.shotSearchQueries = userFilters.shot?.[production.id] || []

state.shotSearchFilterGroups = userFilterGroups.shot?.[production.id] || []
state.shotSearchFilterGroups = userFilterGroups?.shot?.[production.id] || []
},

[SAVE_SHOT_SEARCH_END](state, { searchQuery }) {
Expand Down

0 comments on commit d6f9463

Please sign in to comment.