Skip to content

Commit

Permalink
update dev bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
KochTobi committed Jan 21, 2025
1 parent ae8c571 commit a518d71
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ ConfoundingVariableLevel setVariableLevelForSample(String projectId,
* @param projectId the identifier of the project
* @param experiment the experiment containing the variable
* @param sampleReference the sample for which to set the level
* @param variableReference the variable for which to set the level
* @param level the value of the level
* @param levels a list of values as levels for the variable
* @return the created confounding variable level
*/
@PreAuthorize("hasPermission(#projectId, 'life.qbic.projectmanagement.domain.model.project.Project', 'WRITE')")
Expand Down
Binary file modified user-interface/src/main/bundles/dev.bundle
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,12 @@ public boolean hasChanges() {
private static class ConfoundingVariableField extends CustomField<ConfoundingVariable> implements
HasClientValidation {

private final Div layout;
private VariableReference variableReference;
private final TextField variableName;
private SerializableConsumer<ConfoundingVariableField> deleteAction;

private ConfoundingVariableField() {
layout = new Div();
Div layout = new Div();
variableName = new TextField();
variableName.setLabel("Confounding Variable");
variableName.addValueChangeListener(it -> updateValue());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ public IconResource(StreamResource streamResource) {
this.streamResource = streamResource;
}

public AbstractIcon<? extends AbstractIcon<?>> createIcon() {
public AbstractIcon createIcon() {
if (streamResource != null) {
return new SvgIcon(streamResource);
} else {
Expand Down

0 comments on commit a518d71

Please sign in to comment.