Commit e23e6a8b by Hugo Häggmark Committed by Leonard Gram

fix: fixed snapshots and permission select not beeing able to click

parent b71c9803
......@@ -40,7 +40,7 @@ export class TeamMemberRow extends PureComponent<Props> {
return (
<WithFeatureToggle featureToggle={editorsCanAdmin}>
<td>
<td className="width-5 team-permissions">
<div className="gf-form">
{signedInUserIsTeamAdmin && (
<Select
......
......@@ -384,7 +384,7 @@ exports[`Render when feature toggle editorsCanAdmin is turned on and signedin us
/>
<a
className="btn btn-primary disabled"
href="org/teams/new"
href="#"
>
New team
</a>
......
......@@ -21,7 +21,9 @@ exports[`Render should render team members when sync enabled 1`] = `
<Component
featureToggle={false}
>
<td>
<td
className="width-5 team-permissions"
>
<div
className="gf-form"
>
......@@ -72,7 +74,9 @@ exports[`Render when feature toggle editorsCanAdmin is turned off should not ren
<Component
featureToggle={false}
>
<td>
<td
className="width-5 team-permissions"
>
<div
className="gf-form"
>
......@@ -146,7 +150,9 @@ exports[`Render when feature toggle editorsCanAdmin is turned on should render p
<Component
featureToggle={true}
>
<td>
<td
className="width-5 team-permissions"
>
<div
className="gf-form"
>
......@@ -220,7 +226,9 @@ exports[`Render when feature toggle editorsCanAdmin is turned on should render s
<Component
featureToggle={true}
>
<td>
<td
className="width-5 team-permissions"
>
<div
className="gf-form"
>
......
......@@ -19,3 +19,9 @@ td.admin-settings-key {
margin-bottom: 5px;
}
}
.admin-list-table {
.team-permissions {
padding-right: 120px;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment