Skip to content

Commit

Permalink
modif interface
Browse files Browse the repository at this point in the history
  • Loading branch information
khergalant committed Sep 4, 2024
1 parent 737a2b7 commit b799f34
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ public void init() {
tableConfigEtabStatic.setWidth(100, Unit.PERCENTAGE);
tableConfigEtabStatic.setVisibleColumns((Object[]) FIELDS_ORDER_STATIC);
tableConfigEtabStatic.setColumnHeaderMode(ColumnHeaderMode.HIDDEN);
tableConfigEtabStatic.setColumnWidth(ConfigStaticTablePresentation.CHAMPS_FILE_NAME, 260);
tableConfigEtabStatic.setColumnWidth(ConfigStaticTablePresentation.CHAMPS_DESCRIPTION, 320);
tableConfigEtabStatic.setColumnWidth(ConfigStaticTablePresentation.CHAMPS_FILE_NAME, 280);
tableConfigEtabStatic.setColumnWidth(ConfigStaticTablePresentation.CHAMPS_DESCRIPTION, 330);
tableConfigEtabStatic.setColumnCollapsingAllowed(false);
tableConfigEtabStatic.setColumnReorderingAllowed(false);
tableConfigEtabStatic.setSelectable(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public UploadConfigWindow(final ConfigStaticTablePresentation ressourceStatic) {
/* Texte */
final HorizontalLayout hlComponent = new HorizontalLayout();
hlComponent.setSpacing(true);
hlComponent.setMargin(true);
final Label textLabel = new Label();
textLabel.setValue(applicationContext.getMessage("window.upload.config.message", new Object[] { UPLOAD_LIMIT, ressourceStatic.getExtension() }, UI.getCurrent().getLocale()));
hlComponent.addComponent(textLabel);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public UploadWindow(final String prefixe, final String typeFichier, final Candid
/* Texte */
final HorizontalLayout hlComponent = new HorizontalLayout();
hlComponent.setSpacing(true);
hlComponent.setMargin(true);
final Label textLabel = new Label();
if (isOnlyImg) {
textLabel.setValue(applicationContext.getMessage("window.upload.message.img", new Object[] { UPLOAD_LIMIT }, UI.getCurrent().getLocale()));
Expand Down

0 comments on commit b799f34

Please sign in to comment.