Skip to content

Commit

Permalink
ver: v11.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plateaukao committed Feb 9, 2024
1 parent b43627b commit 7bafd06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ open class NinjaWebView(
//console.log("Element ID:", elementId, "Response string:", responseString);
node = document.getElementById(elementId).nextElementSibling;
node.textContent = responseString;
node.style = "border: 1px dashed ; padding: 5px; display: inline-block"
node.style = "border: 1px dashed lightgray; padding: 5px; display: inline-block"
}
// Create a new IntersectionObserver object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class ToolbarConfigDialogFragment : ComposeDialogFragment() {

private fun getCurrentActionList(): List<ToolbarActionItemInfo> =
config.toolbarActions.map { ToolbarActionItemInfo(it, true) } +
ToolbarAction.values()
ToolbarAction.entries
// need to filter only addable actions here
.filter { it.isAddable }
.filterNot { config.toolbarActions.contains(it) }
Expand Down

0 comments on commit 7bafd06

Please sign in to comment.