mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Fix monaco editor overflowing from container (partial)
This commit is contained in:
parent
0fbaf2275e
commit
0fc90126a7
@ -93,8 +93,8 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
setLayout(layout: string) {
|
setLayout(layout: string) {
|
||||||
this.layout = layout;
|
this.layout = layout;
|
||||||
// We need to trigger a 'resize' event manually, otherwise ace editor stays collapsed
|
// We need to trigger a 'resize' event manually, otherwise editor stays collapsed
|
||||||
// Ace editors 'resize' event listener requires a parameter of force=true
|
// editor 'resize' event listener requires a parameter of force=true
|
||||||
setTimeout(() => window.dispatchEvent(new Event('resize', {force: true} as any)), 0);
|
setTimeout(() => window.dispatchEvent(new Event('resize', {force: true} as any)), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,17 +37,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--div (keyup)="setCodeState(CodeState.DIRTY); setDeployButtonState(DeployButtonState.TODEPLOY); resetAutoSaveCountdown()"
|
|
||||||
ace-editor
|
|
||||||
[(text)]="code"
|
|
||||||
[mode]="language"
|
|
||||||
[theme]="theme"
|
|
||||||
[options]="options"
|
|
||||||
class="tfw-ace-editor">
|
|
||||||
</div-->
|
|
||||||
|
|
||||||
<ngx-monaco-editor [(ngModel)]="code"
|
<ngx-monaco-editor [(ngModel)]="code"
|
||||||
class="tfw-ace-editor"
|
class="tfw-ide-editor"
|
||||||
(keyup)="setCodeState(CodeState.DIRTY); setDeployButtonState(DeployButtonState.TODEPLOY); resetAutoSaveCountdown()"
|
(keyup)="setCodeState(CodeState.DIRTY);
|
||||||
|
setDeployButtonState(DeployButtonState.TODEPLOY);
|
||||||
|
resetAutoSaveCountdown()"
|
||||||
[options]="editorOptions"
|
[options]="editorOptions"
|
||||||
></ngx-monaco-editor>
|
></ngx-monaco-editor>
|
||||||
|
@ -9,9 +9,10 @@
|
|||||||
grid-template-columns: 8fr 1fr;
|
grid-template-columns: 8fr 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tfw-ace-editor {
|
.tfw-ide-editor {
|
||||||
height: calc(100% - 67px);
|
height: calc(100% - 67px);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group {
|
.btn-group {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user