Skip to content

Commit

Permalink
Add groupid and fix min-width in dev-ui (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy authored May 6, 2024
1 parent 7d7e831 commit ce832da
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 97 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ private DevUIWebDependency createWebDependency(WebDependenciesBuildItem.Dependen
try {
// Create the asset tree for the web dependency and set it as the root asset
var asset = createAssetForDep(root, urlBase.toString(), appendRootPart);
return new DevUIWebDependency(webDep.type().toString(), provider.getDependencyKey().getArtifactId(),
return new DevUIWebDependency(webDep.type().toString(),
provider.getDependencyKey().getGroupId() + ":" + provider.getDependencyKey().getArtifactId(),
dep.getVersion(), asset);
} catch (IOException e) {
throw new UncheckedIOException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ export class QwcWebBundlerEntryPoints extends LitElement {
display: flex;
width: 100%;
}
master-content {
min-width: 300px;
}
.codeBlock qui-code-block{
width: 100%;
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ export class QwcWebBundlerOutput extends LitElement {
max-height: 100%;
max-width: 100%;
}
master-content {
min-width: 300px;
}
.linkOut {
right: 15px;
position: absolute;
Expand Down

0 comments on commit ce832da

Please sign in to comment.