1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-07 14:55:27 +02:00

fix(ui/code-editor): stretch code editor content full height [EE-5202] (#8673)

This commit is contained in:
Chaim Lev-Ari 2023-03-30 12:26:32 +03:00 committed by GitHub
parent 7f805ac5be
commit d64e7eacfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 60 additions and 57 deletions

View file

@ -34,14 +34,14 @@
on-change="($ctrl.editorUpdate)"
ng-required="true"
yml="true"
placeholder="# Define or paste the content of your docker compose file here"
placeholder="Define or paste the content of your docker compose file here"
>
<editor-description>
<span class="col-sm-12 text-muted">
<p>
You can get more information about Compose file format in the
<a href="https://docs.docker.com/compose/compose-file/" target="_blank"> official documentation </a>
.
</span>
</p>
</editor-description>
</web-editor-form>
<!-- !web-editor -->

View file

@ -36,14 +36,14 @@
on-change="($ctrl.editorUpdate)"
ng-required="true"
yml="true"
placeholder="# Define or paste the content of your docker compose file here"
placeholder="Define or paste the content of your docker compose file here"
>
<editor-description>
<span class="col-sm-12 text-muted">
<p>
You can get more information about Compose file format in the
<a href="https://docs.docker.com/compose/compose-file/" target="_blank"> official documentation </a>
.
</span>
</p>
</editor-description>
</web-editor-form>
<!-- !web-editor -->

View file

@ -14,14 +14,14 @@
on-change="($ctrl.editorUpdate)"
ng-required="true"
yml="true"
placeholder="# Define or paste the content of your docker compose file here"
placeholder="Define or paste the content of your docker compose file here"
>
<editor-description>
<span class="col-sm-12 text-muted">
<p>
You can get more information about Compose file format in the
<a href="https://docs.docker.com/compose/compose-file/" target="_blank"> official documentation </a>
.
</span>
</p>
</editor-description>
</web-editor-form>
<!-- !web-editor -->

View file

@ -26,7 +26,6 @@
value="formValues.profileFileContent"
on-change="(onChangeFileContent)"
ng-required="true"
placeholder="#"
>
</web-editor-form>

View file

@ -27,7 +27,6 @@
value="formValues.profileFileContent"
on-change="(onChangeFileContent)"
ng-required="true"
placeholder="#"
>
</web-editor-form>

View file

@ -113,15 +113,13 @@
on-change="(onChangeFileContent)"
ng-required="true"
yml="true"
placeholder="# Define or paste the content of your docker compose file here"
placeholder="Define or paste the content of your docker compose file here"
>
<editor-description>
<span class="col-sm-12 text-muted small">
<p>
You can get more information about Compose file format in the <a href="https://docs.docker.com/compose/compose-file/" target="_blank">official documentation</a>.
</span>
<div class="col-sm-12" ng-if="state.editorYamlValidationError">
<span class="text-danger small">{{ state.editorYamlValidationError }}</span>
</div>
</p>
<p ng-if="state.editorYamlValidationError" class="text-danger">{{ state.editorYamlValidationError }}</p>
</editor-description>
</web-editor-form>