Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(data-table): use apostrophe in data table example #5430

Merged
merged 2 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions packages/react/src/components/DataTable/stories/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 3000,
rule: 'Round robin',
attached_groups: 'Kevins VM Groups',
attached_groups: 'Kevin’s VM Groups',
status: 'Disabled',
},
{
Expand All @@ -23,7 +23,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 443,
rule: 'Round robin',
attached_groups: 'Maureens VM Groups',
attached_groups: 'Maureen’s VM Groups',
status: 'Starting',
},
{
Expand All @@ -32,7 +32,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 80,
rule: 'DNS delegation',
attached_groups: 'Andrews VM Groups',
attached_groups: 'Andrew’s VM Groups',
status: 'Active',
},
{
Expand All @@ -41,7 +41,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 3000,
rule: 'Round robin',
attached_groups: 'Marcs VM Groups',
attached_groups: 'Marc’s VM Groups',
status: 'Disabled',
},
{
Expand All @@ -50,7 +50,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 443,
rule: 'Round robin',
attached_groups: 'Mels VM Groups',
attached_groups: 'Mel’s VM Groups',
status: 'Starting',
},
{
Expand All @@ -59,7 +59,7 @@ export const initialRows = [
protocol: 'HTTP',
port: 80,
rule: 'DNS delegation',
attached_groups: 'Ronjas VM Groups',
attached_groups: 'Ronja’s VM Groups',
status: 'Active',
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const initialRows = [
protocol: 'HTTP',
port: 3000,
rule: 'Round robin',
attached_groups: 'Kevins VM Groups',
attached_groups: 'Kevin’s VM Groups',
status: 'Disabled',
enabled: true,
},
Expand All @@ -35,7 +35,7 @@ const initialRows = [
protocol: 'HTTP',
port: 443,
rule: 'Round robin',
attached_groups: 'Maureens VM Groups',
attached_groups: 'Maureen’s VM Groups',
status: 'Starting',
enabled: true,
},
Expand All @@ -45,7 +45,7 @@ const initialRows = [
protocol: 'HTTP',
port: 80,
rule: 'DNS delegation',
attached_groups: 'Andrews VM Groups',
attached_groups: 'Andrew’s VM Groups',
status: 'Active',
enabled: false,
},
Expand Down