diff --git a/.betterer.results b/.betterer.results
index 2cdb78262b7..0266d833b36 100644
--- a/.betterer.results
+++ b/.betterer.results
@@ -1490,33 +1490,16 @@ exports[`better eslint`] = {
"public/app/features/admin/UserOrgs.tsx:5381": [
[0, 0, 0, "No untranslated strings. Wrap text with ", "0"],
[0, 0, 0, "No untranslated strings. Wrap text with ", "1"],
- [0, 0, 0, "Styles should be written using objects.", "2"],
- [0, 0, 0, "Styles should be written using objects.", "3"],
- [0, 0, 0, "Styles should be written using objects.", "4"],
- [0, 0, 0, "Styles should be written using objects.", "5"],
- [0, 0, 0, "Styles should be written using objects.", "6"],
- [0, 0, 0, "Styles should be written using objects.", "7"],
- [0, 0, 0, "Styles should be written using objects.", "8"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "2"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "3"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "4"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "5"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "6"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "7"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "8"],
[0, 0, 0, "No untranslated strings. Wrap text with ", "9"],
- [0, 0, 0, "Styles should be written using objects.", "10"],
- [0, 0, 0, "Styles should be written using objects.", "11"],
- [0, 0, 0, "Styles should be written using objects.", "12"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "13"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "14"],
- [0, 0, 0, "Styles should be written using objects.", "15"],
- [0, 0, 0, "Styles should be written using objects.", "16"],
- [0, 0, 0, "Styles should be written using objects.", "17"],
- [0, 0, 0, "Styles should be written using objects.", "18"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "19"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "20"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "21"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "22"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "23"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "24"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "25"],
- [0, 0, 0, "Styles should be written using objects.", "26"],
- [0, 0, 0, "Styles should be written using objects.", "27"],
- [0, 0, 0, "Styles should be written using objects.", "28"]
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "10"],
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "11"]
],
"public/app/features/admin/UserPermissions.tsx:5381": [
[0, 0, 0, "No untranslated strings. Wrap text with ", "0"],
@@ -5417,9 +5400,7 @@ exports[`better eslint`] = {
],
"public/app/features/storage/RootView.tsx:5381": [
[0, 0, 0, "No untranslated strings. Wrap text with ", "0"],
- [0, 0, 0, "No untranslated strings. Wrap text with ", "1"],
- [0, 0, 0, "Styles should be written using objects.", "2"],
- [0, 0, 0, "Styles should be written using objects.", "3"]
+ [0, 0, 0, "No untranslated strings. Wrap text with ", "1"]
],
"public/app/features/storage/StorageFolderPage.tsx:5381": [
[0, 0, 0, "No untranslated strings. Wrap text with ", "0"]
diff --git a/public/app/features/admin/UserOrgs.tsx b/public/app/features/admin/UserOrgs.tsx
index 644d42d7eb7..2cfa498ebfd 100644
--- a/public/app/features/admin/UserOrgs.tsx
+++ b/public/app/features/admin/UserOrgs.tsx
@@ -99,30 +99,30 @@ export class UserOrgs extends PureComponent {
const getOrgRowStyles = stylesFactory((theme: GrafanaTheme2) => {
return {
- removeButton: css`
- margin-right: 0.6rem;
- text-decoration: underline;
- color: ${theme.v1.palette.blue95};
- `,
- label: css`
- font-weight: 500;
- `,
- disabledTooltip: css`
- display: flex;
- `,
- tooltipItem: css`
- margin-left: 5px;
- `,
- tooltipItemLink: css`
- color: ${theme.v1.palette.blue95};
- `,
- rolePickerWrapper: css`
- display: flex;
- `,
- rolePicker: css`
- flex: auto;
- margin-right: ${theme.spacing(1)};
- `,
+ removeButton: css({
+ marginRight: '0.6rem',
+ textDecoration: 'underline',
+ color: theme.v1.palette.blue95,
+ }),
+ label: css({
+ fontWeight: 500,
+ }),
+ disabledTooltip: css({
+ display: 'flex',
+ }),
+ tooltipItem: css({
+ marginLeft: '5px',
+ }),
+ tooltipItemLink: css({
+ color: theme.v1.palette.blue95,
+ }),
+ rolePickerWrapper: css({
+ display: 'flex',
+ }),
+ rolePicker: css({
+ flex: 'auto',
+ marginRight: theme.spacing(1),
+ }),
};
});
@@ -222,33 +222,29 @@ class UnThemedOrgRow extends PureComponent {