Unverified Commit 0a95fb6f authored by mvdbeek's avatar mvdbeek
Browse files

Drop unnecessary `|| false`

parent d5100bec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ export default {
            if (this.invocations.length < 1) {
                return false;
            }
            return (this.invocations[0].history_id && this.currentHistoryId != this.invocations[0].history_id) || false;
            return this.invocations[0].history_id && this.currentHistoryId != this.invocations[0].history_id;
        },
    },
    mounted() {