Commit 50f8a241 authored by Duggan, John's avatar Duggan, John
Browse files

Temporarily disable broken on edit handlers

parent 2a227516
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ class MainViewModel:
        self.view_state.errors = []
        try:
            self.view_state.editor_content = json_data
            self.model.set_file_contents(self.view_state.editor_index, json_data)
            # self.model.set_file_contents(self.view_state.editor_index, json_data)
        except ValidationError as e:
            for error in e.errors():
                msg = ""
@@ -104,7 +104,7 @@ class MainViewModel:
        for update in updated:
            match update:
                case "editor_path":
                    self.model.set_file_path(self.view_state.editor_index, self.view_state.editor_path)
                    # self.model.set_file_path(self.view_state.editor_index, self.view_state.editor_path)
                    self.config_bind.update_in_view(self.model.config)

    def on_completion(self, _sender: Any) -> None: