Skip to content
Open
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
7 changes: 6 additions & 1 deletion app/components/Viewer/Generic/Model/BlocksOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,12 @@ const polyhedronSchema = back_schemas.opengeodeweb_back.model_component_polyhedr
/>
</OptionsSection>

<OptionsSection v-if="blockId" title="Component Options" class="mt-4">
<OptionsSection
v-if="blockId"
title="Component Options"
class="mt-4"
data-testid="modelComponentOptions"
>
<VisibilitySwitch v-model="blockVisibility" />
<ViewerOptionsColoringTypeSelector
:id="modelId"
Expand Down
7 changes: 6 additions & 1 deletion app/components/Viewer/Generic/Model/CornersOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,12 @@ const vertexSchema = back_schemas.opengeodeweb_back.model_component_vertex_attri
/>
</OptionsSection>

<OptionsSection v-if="cornerId" title="Component Options" class="mt-4">
<OptionsSection
v-if="cornerId"
title="Component Options"
class="mt-4"
data-testid="modelComponentOptions"
>
<VisibilitySwitch v-model="cornerVisibility" />
<ViewerOptionsColoringTypeSelector
:id="modelId"
Expand Down
7 changes: 6 additions & 1 deletion app/components/Viewer/Generic/Model/LinesOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,12 @@ const edgeSchema = back_schemas.opengeodeweb_back.model_component_edge_attribute
/>
</OptionsSection>

<OptionsSection v-if="lineId" title="Component Options" class="mt-4">
<OptionsSection
v-if="lineId"
title="Component Options"
class="mt-4"
data-testid="modelComponentOptions"
>
<VisibilitySwitch v-model="lineVisibility" />
<ViewerOptionsColoringTypeSelector
:id="modelId"
Expand Down
7 changes: 6 additions & 1 deletion app/components/Viewer/Generic/Model/SurfacesOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,12 @@ const polygonSchema = back_schemas.opengeodeweb_back.model_component_polygon_att
/>
</OptionsSection>

<OptionsSection v-if="surfaceId" title="Component Options" class="mt-4">
<OptionsSection
v-if="surfaceId"
title="Component Options"
class="mt-4"
data-testid="modelComponentOptions"
>
<VisibilitySwitch v-model="surfaceVisibility" />
<ViewerOptionsColoringTypeSelector
:id="modelId"
Expand Down
Loading