Skip to content

Commit

Permalink
change default conditional to null
Browse files Browse the repository at this point in the history
  • Loading branch information
shapiromatron committed Nov 22, 2024
1 parent 563ce6d commit 051ffb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/summary/dataPivot/ConditionalFormat.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class _DataPivot_settings_conditional {
let mapping = buildStyleMap(values, true);
vals.unique_tokens.forEach(v => {
var select = dp.style_manager
.add_select(parent.settings.type, mapping.get(v), true)
.add_select(parent.settings.type, mapping.get(v) || NULL_CASE, true)
.data("key", v);
self.discrete_styles.push(select);
add_input_row(discrete, `Style for <kbd>${v}</kbd>:`, select);
Expand Down

0 comments on commit 051ffb4

Please sign in to comment.