fix conditional
Some checks failed
ci/woodpecker/pr/lint-backend Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/lint-foundkey-js Pipeline was successful
ci/woodpecker/pr/lint-client Pipeline failed
ci/woodpecker/pr/test Pipeline failed

This commit is contained in:
Norm 2022-10-28 22:04:28 -04:00
parent 7117e4dadb
commit dbd02dadd3
Signed by: norm
GPG key ID: 7123E30E441E80DE

View file

@ -234,7 +234,7 @@ if (props.pagination.params && isRef(props.pagination.params)) {
}
watch($$(queue), (a, b) => {
if (a.length !== 0 && b.length !== 0) emit('queue', queue.length);
if (a.length !== 0 || b.length !== 0) emit('queue', queue.length);
}, { deep: true });
init();