1
0
Fork 0
mirror of synced 2024-09-17 17:57:47 +12:00

wip working

This commit is contained in:
Gerard Burns 2024-04-04 10:29:10 +01:00
parent 2e68d8b7d6
commit e7c62c041b
2 changed files with 21 additions and 3 deletions

View file

@ -26,6 +26,9 @@
if (columnType === "attachment") {
return "https://docs.budibase.com/docs/attachments"
}
if (columnType === "array") {
return "https://docs.budibase.com/docs/multi-select"
}
return ""
}
@ -94,7 +97,7 @@
.contextTooltipHeader {
row-gap: 6px;
column-gap: 5px;
column-gap: 8px;
background-color: var(--background-alt);
color: var(--ink);
display: flex;
@ -117,9 +120,24 @@
}
.contextTooltipContent > p {
row-gap: 6px;
column-gap: 8px;
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 6px 8px;
border-width: var(--spectrum-actionbutton-border-size);
border-radius: var(--spectrum-alias-border-radius-regular);
border: 1px solid
var(
--spectrum-actionbutton-m-border-color,
var(--spectrum-alias-border-color)
);
}
.columnName {
font-style: italic;
padding: 3px 6px;
border-radius: 5px;
background-color: var(--grey-3);

View file

@ -29,11 +29,11 @@ export const validators = {
if (fieldSchema.type === "string") {
response.warnings.push(
"This column can be used as input for a chart, but non-numeric values may cause unexpected behavior.")
"This column can be used as an input for a chart, but non-numeric values may cause unexpected behavior.")
}
if (fieldSchema.type === "datetime") {
response.warnings.push(
"This column can be used as input for a chart, but it may be parsed differently depending on the which is used.")
"This column can be used as an input for a chart, but it may be parsed differently depending on which is used.")
}
const isRequired = fieldSchema?.constraints?.presence?.allowEmpty === false