Skip to content

Commit

Permalink
Merge branch 'main' into release-1.4.0
Browse files Browse the repository at this point in the history
# Conflicts:
#	user-interface/src/main/bundles/dev.bundle
  • Loading branch information
KochTobi committed Aug 28, 2024
2 parents 2bc7c43 + 33139b5 commit fb69b1b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected ProjectAccessComponent(
buttonBar.add(addCollaboratorButton);
header.add(titleField);
add(header);
Span userProjectAccessDescription = new Span("Users with access to this project");
Span userProjectAccessDescription = new Span("Users with access to this project.");
projectUserGrid = createProjectUserGrid();
add(userProjectAccessDescription, projectUserGrid);
}
Expand Down Expand Up @@ -152,7 +152,7 @@ private void showControls(boolean isVisible) {
}

private Grid<ProjectUser> createProjectUserGrid() {
Grid<ProjectUser> pUserGrid = new Grid<>(ProjectUser.class);
Grid<ProjectUser> pUserGrid = new Grid<>(ProjectUser.class, false);
Editor<ProjectUser> editor = pUserGrid.getEditor();
Binder<ProjectUser> binder = new Binder<>(ProjectUser.class);
editor.setBinder(binder);
Expand Down

0 comments on commit fb69b1b

Please sign in to comment.