Skip to content

Commit

Permalink
Merge pull request #125 from Moros1138/122-bug-in-version-8d6f9c6
Browse files Browse the repository at this point in the history
122 bug in version 8d6f9c6
  • Loading branch information
Moros1138 authored Sep 6, 2024
2 parents 8d6f9c6 + 18b8d63 commit 0115796
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Each batch

It is a summary of changes that would be pertinent to the end user of the PGEtinker website. For a comprehensive history of changes made to the project, please refer to the repository's commit history.

## 2024-09-06

- Fixed [Issue #122](https://github.com/Moros1138/PGEtinker/issues/122)

## 2024-07-12

- Fixed [Issue #120](https://github.com/Moros1138/PGEtinker/issues/120)
Expand Down
4 changes: 4 additions & 0 deletions resources/css/app/components/EditorPanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
right: 0;
bottom: 1.2rem;
}

input.rename-input {
color: var(--vscode-foreground);
}

.status {
position: absolute;
Expand Down
6 changes: 5 additions & 1 deletion resources/js/lib/monacoConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

import * as vscode from 'vscode';
import getEditorServiceOverride from '@codingame/monaco-vscode-editor-service-override';
import getKeybindingsServiceOverride from '@codingame/monaco-vscode-keybindings-service-override'
import getKeybindingsServiceOverride from '@codingame/monaco-vscode-keybindings-service-override';
import getModelServiceOverride from '@codingame/monaco-vscode-model-service-override';
import getThemeServiceOverride from '@codingame/monaco-vscode-theme-service-override';
import monacoVscodeTextmateServiceOverride from '@codingame/monaco-vscode-textmate-service-override';
import { useOpenEditorStub } from 'monaco-editor-wrapper/vscode/services';
import { getStorageValue, setStorageValue } from './storage';
Expand Down Expand Up @@ -88,6 +90,8 @@ export const createUserConfig = (workspaceRoot, code, codeUri) =>
serviceConfig: {
userServices: {
...getEditorServiceOverride(useOpenEditorStub),
...getModelServiceOverride(),
...getThemeServiceOverride(),
...monacoVscodeTextmateServiceOverride(),
...getKeybindingsServiceOverride(),
},
Expand Down

0 comments on commit 0115796

Please sign in to comment.