Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package misk.web.metadata.all

import misk.inject.KAbstractModule
import misk.moshi.MoshiAdapterModule
import misk.web.WebActionModule
import misk.web.dashboard.AdminDashboard
import misk.web.dashboard.AdminDashboardAccess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ fun TagConsumer<*>.Alert(
div("flex-shrink-0") {
when (theme) {
AlertTheme.BLUE, AlertTheme.BLUE_HIGHLIGHT -> {
// TODO upstream these to Heroicons
unsafe {
raw(
"""
Expand All @@ -50,6 +51,7 @@ fun TagConsumer<*>.Alert(
}

AlertTheme.GREEN -> {
// TODO upstream these to Heroicons
unsafe {
raw(
"""
Expand All @@ -62,6 +64,7 @@ fun TagConsumer<*>.Alert(
}

AlertTheme.RED -> {
// TODO upstream these to Heroicons
unsafe {
raw(
"""
Expand Down