- Applies a formatting rule to all columns that match a specified name
- and type.
+ Customize the formatting of table columns by applying rules based on
+ matching both a column name and column type.
-
Default formatting for column types
- Applies a formatting rule to all columns of a set type.
+ Choose the default formatting rule to apply to all table columns
+ based on their type.
- Default Formatting & Time zone
+ Default Format & Time zone
>
}
onToggle={this.handleSectionToggle}
@@ -163,7 +163,7 @@ export class SettingsMenu extends Component<
transform="grow-4"
className="mr-2"
/>
- Column Specific Formatting Rules
+ Format by Column Name & Type
>
}
onToggle={this.handleSectionToggle}
diff --git a/packages/code-studio/src/settings/ShortcutsSectionContent.tsx b/packages/code-studio/src/settings/ShortcutsSectionContent.tsx
index b6ab988b74..6b5f8e8913 100644
--- a/packages/code-studio/src/settings/ShortcutsSectionContent.tsx
+++ b/packages/code-studio/src/settings/ShortcutsSectionContent.tsx
@@ -62,8 +62,8 @@ function ShortcutSectionContent({
return (
<>
- Customize shortcuts below. Assigning shortcuts that conflict with the
- browser or IDE shortcuts may cause unintended behavior
+ Customize shortcuts below. To prevent unexpected results, avoid
+ conflicting shortcuts with the browser or IDE editor.
{categories.map(category => (
{
}
optionItems.push({
type: OptionType.VISIBILITY_ORDERING_BUILDER,
- title: 'Hide, Group, and Order Columns',
+ title: 'Organize Columns',
icon: dhEye,
});
if (isFormatColumnsAvailable) {
diff --git a/packages/iris-grid/src/sidebar/AdvancedSettingsMenu.tsx b/packages/iris-grid/src/sidebar/AdvancedSettingsMenu.tsx
index d42794db7a..68089731d2 100644
--- a/packages/iris-grid/src/sidebar/AdvancedSettingsMenu.tsx
+++ b/packages/iris-grid/src/sidebar/AdvancedSettingsMenu.tsx
@@ -34,9 +34,9 @@ AdvancedSettingsMenu.getAdvancedSettingsTitleForKey = (
): string => {
switch (key) {
case AdvancedSettingsType.FILTER_CONTROL_CHANGE_CLEARS_ALL_FILTERS:
- return 'Control filters clear existing table filters';
+ return 'Clear current table filters before applying new filters from a control';
case AdvancedSettingsType.LINK_CHANGE_CLEARS_ALL_FILTERS:
- return 'Inbound links clear existing table filters';
+ return 'Clear current table filters before applying new filters from an incoming link filter';
}
};
diff --git a/packages/iris-grid/src/sidebar/RollupRows.tsx b/packages/iris-grid/src/sidebar/RollupRows.tsx
index 180f51e7cd..046d2f7bb0 100644
--- a/packages/iris-grid/src/sidebar/RollupRows.tsx
+++ b/packages/iris-grid/src/sidebar/RollupRows.tsx
@@ -517,8 +517,8 @@ class RollupRows extends Component {
// eslint-disable-next-line react/jsx-props-no-spreading
{...provided.droppableProps}
>
- Create rollup by dragging columns here, from the available
- columns list below.
+ To create a rollup, drag columns from the list below and
+ drop them into this area.
)}
diff --git a/packages/iris-grid/src/sidebar/SelectDistinctBuilder.tsx b/packages/iris-grid/src/sidebar/SelectDistinctBuilder.tsx
index ccee5af7f3..69b96081d6 100644
--- a/packages/iris-grid/src/sidebar/SelectDistinctBuilder.tsx
+++ b/packages/iris-grid/src/sidebar/SelectDistinctBuilder.tsx
@@ -161,12 +161,9 @@ class SelectDistinctBuilder extends Component<
- Modifies a table to show unique value from a column, same as{' '}
-
- selectDistinct("Column")
-
- . Filters will be reset and the resulting table will contain only
- the selected columns above.
+ Display only unique values from the selected table columns. Note
+ that this will reset any filters and display only the selected
+ columns.