Skip to content

Commit 1fbb476

Browse files
committed
fix: add initial value
1 parent 38bd27a commit 1fbb476

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/store/reducers/query/query.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const sliceLimit = queriesHistoryInitial.length - MAXIMUM_QUERIES_IN_HISTORY;
3131

3232
const initialState: QueryState = {
3333
input: '',
34+
isDirty: false,
3435
history: {
3536
queries: queriesHistoryInitial
3637
.slice(sliceLimit < 0 ? 0 : sliceLimit)

0 commit comments

Comments
 (0)