Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Sep 13, 2024
1 parent cc1932a commit 55dba4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class FaultPolygonsAttribute implements Setting<ValueType> {
}

makeComponent(): (props: SettingComponentProps<ValueType>) => React.ReactNode {
return function Ensemble(props: SettingComponentProps<ValueType>) {
return function FaultPolygons(props: SettingComponentProps<ValueType>) {
const options: DropdownOption[] = props.availableValues.map((value) => {
return {
value: value.toString(),
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/modules/LayerSpike/view/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function View(props: ModuleViewProps<Interfaces>): React.ReactNode {
</DeckGlView>
);
}
viewerLayers.push(...results.globalLayers);
viewerLayers.push(...results.globalLayers.toReversed());
viewerLayers.push(
new Axes2DLayer({
id: "axes",
Expand Down

0 comments on commit 55dba4f

Please sign in to comment.