Skip to content

Commit 9c31b8c

Browse files
committed
setPodContent directly set pod.dirty
1 parent a4e7a8b commit 9c31b8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/src/lib/reducers/pod.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ export default {
178178
const { id, content } = action.payload;
179179
let pod = state.pods[id];
180180
pod.content = content;
181-
pod.dirty = pod.remoteHash !== hashPod(pod);
181+
// pod.dirty = pod.remoteHash !== hashPod(pod);
182+
pod.dirty = true;
182183
},
183184
};

0 commit comments

Comments
 (0)