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

add scope field to microsegmentation table #2471

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports[`RuleRow should render 1`] = `
vertical-align: text-bottom;
}

.emotion-15 {
.emotion-17 {
background-color: #3570f40D;
text-align: center;
padding: 5px 0 5px 15px;
Expand All @@ -35,7 +35,7 @@ exports[`RuleRow should render 1`] = `
text-decoration: dashed underline;
}

.emotion-18 {
.emotion-20 {
background-color: #3570f40D;
text-align: center;
padding: 5px 0 5px 15px;
Expand Down Expand Up @@ -99,7 +99,13 @@ exports[`RuleRow should render 1`] = `
tcp
</td>
<td
class="emotion-15 emotion-9"
class="emotion-2 emotion-3"
color="#3570f40D"
>
OnPrem
</td>
<td
class="emotion-17 emotion-9"
color="#3570f40D"
>
<span>
Expand Down Expand Up @@ -130,7 +136,7 @@ exports[`RuleRow should render 1`] = `
</span>
</td>
<td
class="emotion-18 emotion-3"
class="emotion-20 emotion-3"
color="#3570f40D"
>
<span>
Expand All @@ -152,7 +158,7 @@ exports[`RuleRow should render 1`] = `
</span>
</td>
<td
class="emotion-18 emotion-3"
class="emotion-20 emotion-3"
color="#3570f40D"
>
<span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ exports[`RuleTable should render rule table 1`] = `
word-break: break-all;
}

.emotion-19 {
.emotion-21 {
text-align: center;
border-bottom: 2px solid #d5d5d5;
color: #9a9a9a;
Expand All @@ -80,15 +80,15 @@ exports[`RuleTable should render rule table 1`] = `
word-break: break-all;
}

.emotion-27 {
.emotion-29 {
background-color: #3570f40D;
text-align: left;
padding: 5px 0 5px 15px;
vertical-align: middle;
word-break: break-all;
}

.emotion-33 {
.emotion-35 {
background-color: #3570f40D;
text-align: left;
padding: 5px 0 5px 15px;
Expand All @@ -98,7 +98,7 @@ exports[`RuleTable should render rule table 1`] = `
text-decoration: dashed underline;
}

.emotion-40 {
.emotion-44 {
background-color: #3570f40D;
text-align: center;
padding: 5px 0 5px 15px;
Expand All @@ -108,7 +108,7 @@ exports[`RuleTable should render rule table 1`] = `
text-decoration: dashed underline;
}

.emotion-43 {
.emotion-47 {
background-color: #3570f40D;
text-align: center;
padding: 5px 0 5px 15px;
Expand Down Expand Up @@ -179,43 +179,48 @@ exports[`RuleTable should render rule table 1`] = `
Layer
</th>
<th
class="emotion-19 emotion-12"
class="emotion-11 emotion-12"
>
Scope
</th>
<th
class="emotion-21 emotion-12"
>
Enforcement State
</th>
<th
class="emotion-19 emotion-12"
class="emotion-21 emotion-12"
>
Edit
</th>
<th
class="emotion-19 emotion-12"
class="emotion-21 emotion-12"
>
Delete
</th>
</tr>
</thead>
<tbody>
<tr
class="emotion-25 emotion-26"
class="emotion-27 emotion-28"
data-testid="segmentation-row"
>
<td
class="emotion-27 emotion-28"
class="emotion-29 emotion-30"
color="#3570f40D"
/>
<td
class="emotion-27 emotion-28"
class="emotion-29 emotion-30"
color="#3570f40D"
/>
<td
class="emotion-27 emotion-28"
class="emotion-29 emotion-30"
color="#3570f40D"
>
2222
</td>
<td
class="emotion-33 emotion-34"
class="emotion-35 emotion-36"
color="#3570f40D"
>
<span>
Expand All @@ -240,19 +245,25 @@ exports[`RuleTable should render rule table 1`] = `
</span>
</td>
<td
class="emotion-27 emotion-28"
class="emotion-29 emotion-30"
color="#3570f40D"
>
1111
</td>
<td
class="emotion-27 emotion-28"
class="emotion-29 emotion-30"
color="#3570f40D"
>
tcp
</td>
<td
class="emotion-40 emotion-34"
class="emotion-29 emotion-30"
color="#3570f40D"
>
OnPrem
</td>
<td
class="emotion-44 emotion-36"
color="#3570f40D"
>
<span>
Expand Down Expand Up @@ -283,7 +294,7 @@ exports[`RuleTable should render rule table 1`] = `
</span>
</td>
<td
class="emotion-43 emotion-28"
class="emotion-47 emotion-30"
color="#3570f40D"
>
<span>
Expand All @@ -305,7 +316,7 @@ exports[`RuleTable should render rule table 1`] = `
</span>
</td>
<td
class="emotion-43 emotion-28"
class="emotion-47 emotion-30"
color="#3570f40D"
>
<span>
Expand Down
Loading