Back to Angular

Code Editor.Component

adev/src/app/editor/code-editor/code-editor.component.html

22.0.0-next.10618 B
Original Source

@for (file of files(); track file) { @if (tab.isActive && isRenamingFile()) { } @else if (restrictedMode()) { {{ file.filename.replace('src/app/', '') }} } @else { {{ file.filename.replace('src/', '') }} } @if (tab.isActive && canRenameFile(file.filename)) { edit } @if (tab.isActive && canDeleteFile(file.filename)) { delete } } @if (isCreatingFile()) { } @if (canCreateFile()) { add } launch Open in Firebase Studio Open in StackBlitz download

@if (displayErrorsBox()) { close @for (error of errors(); track error) { - (line: {{ error.lineNumber }}:{{ error.characterPosition }}) {{ error.message }} }

}