Skip to content

Commit

Permalink
[YUNIKORN-2571] Add hierarchy icon to queue node (#189)
Browse files Browse the repository at this point in the history
Closes: #189

Signed-off-by: Craig Condit <[email protected]>
  • Loading branch information
doupache authored and craigcondit committed Sep 6, 2024
1 parent aa67a85 commit 3ec5af2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -200,3 +200,11 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

--------------------------------------------------------------------------------
This product bundles various third-party components under other open source
licenses. This section summarizes those components and their licenses.

MIT License
--------------------------------------
src/assets/images/hierarchy.svg (https://www.svgrepo.com/page/licensing/)
7 changes: 7 additions & 0 deletions src/app/components/queue-v2/queues-v2.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,13 @@ function queueVisualization(rawData : QueueInfo){
.attr("height", 30)
.attr("fill", "#e6f4ea")
.attr("class", "cardBottom");

group.append("image")
.attr("href", "./assets/images/hierarchy.svg")
.attr("x", 5)
.attr("y", 5)
.attr("width", 20)
.attr("height", 20);

group.append("text")
.attr("x", 30)
Expand Down
8 changes: 8 additions & 0 deletions src/assets/images/hierarchy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3ec5af2

Please sign in to comment.