[PyCharm] PY-73541 tags are shown for non-code cells

GitOrigin-RevId: 6e2ed3af27ca9eec38c1e5bc694b441c70aa9ac8
This commit is contained in:
Bogdan.Kirilenko
2024-07-11 17:02:28 +02:00
committed by intellij-monorepo-bot
parent ca2f43a7ed
commit 889ee27c3b

View File

@@ -39,7 +39,7 @@ class NotebookBelowCellDelimiterPanel(
updateBackgroundColor()
border = BorderFactory.createEmptyBorder(delimiterHeight, 0, delimiterHeight, 0)
val addingTagsRow = (cellTags.isNotEmpty() && isExecutable && Registry.`is`("jupyter.cell.metadata.tags", false))
val addingTagsRow = (cellTags.isNotEmpty() && Registry.`is`("jupyter.cell.metadata.tags", false))
if (addingTagsRow) add(createTagsRow(), BorderLayout.EAST) // PY-72712
}