We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ae113 commit c6a8e9dCopy full SHA for c6a8e9d
web_src/js/components/RepoActionView.vue
@@ -193,7 +193,7 @@ export default defineComponent({
193
194
// Set up observer on the steps container (safer and more efficient than document.body)
195
const stepsContainer = (this.$refs.steps as HTMLElement);
196
- if (stepsContainer && typeof MutationObserver !== 'undefined') {
+ if (stepsContainer && 'MutationObserver' in window) {
197
this.mutationObserver = new MutationObserver((mutations) => {
198
for (const m of mutations) {
199
// Auto-scroll new log lines as they appear
0 commit comments