Code Monkey home page Code Monkey logo

Comments (7)

oweitman avatar oweitman commented on May 14, 2024 1

fehler ist nicht mehr aufgetreten. fehler lag wohl auch eher mehr an chrome selbst, da er nach einem update aufgetreten ist.issue closed

from nim.

june07 avatar june07 commented on May 14, 2024

So after the workaround, you no longer experience the problem?

from nim.

oweitman avatar oweitman commented on May 14, 2024

Ehm no. That is why i Call it workaround. But i loose all the Settings of the developer console.

from nim.

june07 avatar june07 commented on May 14, 2024

from nim.

june07 avatar june07 commented on May 14, 2024

Further a screen recording always helps.

from nim.

oweitman avatar oweitman commented on May 14, 2024

OS: Microsoft Windows [Version 10.0.18362.836]
NiM: 2.4.2
Node: v10.20.1 (i think this doesnt matter, because the error is in the startup phase of nim
screencast ist not possible anymore, because after workaround the error doesnt come up.
before the workaround ther is only an empty screen after start of NiM

maybe the cause of this issue isnt NiM. Maybe it can be Chrome Dev tools
see also
eclipsesource/tabris-js#2069

the problem is, that the routine want to migrate the property 'length' from localStorage to localSetting (array) that is not writable.

    _migrateSettingsFromLocalStorage: function() 
    {
        var localSettings = ["advancedSearchConfig", "breakpoints", "consoleHistory", "domBreakpoints", "eventListenerBreakpoints", "fileSystemMapping", "lastSelectedSourcesSidebarPaneTab", "previouslyViewedFiles", "savedURLs", "watchExpressions", "workspaceExcludedFolders", "xhrBreakpoints"].keySet();
        if (!window.localStorage)
            return;
        for (var key in window.localStorage) {
            if (key in localSettings)
                continue;var value = window.localStorage[key];
            window.localStorage.removeItem(key);
            WebInspector.settings._settingsStorage[key] = value;
        }
    },
    _clearBreakpointsWhenTooMany: function(breakpointsSetting, maxBreakpointsCount) 
    {
        if (breakpointsSetting.get().length > maxBreakpointsCount)
            breakpointsSetting.set([]);
    }
}

from nim.

june07 avatar june07 commented on May 14, 2024

This certainly does not seem like a NiM issue based solely on the stack trace. Also want to bring out this current Chromium bug: https://blog.june07.com/chromium-bug-900945/ which sounded somewhat similar in nature.

from nim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.