Skip to content

Commit

Permalink
Add stars to Final Columns
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Jan 24, 2024
1 parent 78aec29 commit cdf1ef5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/maps/ingestion/@id/edit-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,10 @@ export default function TableInterface({ url }: EditTableProps) {
},
},
[
h("span.selected-column", {}, [columnName]),
h("span.selected-column", {}, [
columnName,
h.if(FINAL_COLUMNS.includes(columnName))(Icon, {icon: "star-empty", size: "12", color: "#333333", style: {marginLeft: "5px", marginBottom: "2px"}})
]),
h.if(
(columnName in dataParameters.filter &&
dataParameters.filter[columnName].is_valid()) ||
Expand Down

0 comments on commit cdf1ef5

Please sign in to comment.