Skip to content

Commit

Permalink
Add flexibility for FDP entities
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSuchanek committed May 12, 2020
1 parent 0ba3f01 commit b13baa6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/
package solutions.fairdata.openrefine.metadata.dto.config;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -31,6 +32,7 @@
@NoArgsConstructor
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class FDPConfigDTO {
private String persistentUrl;
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/
package solutions.fairdata.openrefine.metadata.dto.config;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -31,6 +32,7 @@
@NoArgsConstructor
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class FDPInfoDTO {
private String name;
private String version;
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/module/styles/dialogs/audit-dialog.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ div.metadata-dialog.audit-dialog div.audit-filters {
display: flex;
}

div.metadata-dialog.audit-dialog table {
width: 100%;
}

div.metadata-dialog.audit-dialog div.audit-filters > div.audit-filter {
flex-grow: 1;
display: flex;
Expand Down

0 comments on commit b13baa6

Please sign in to comment.