Skip to content

Commit

Permalink
fix file references
Browse files Browse the repository at this point in the history
  • Loading branch information
duranb committed Feb 26, 2025
1 parent 1622509 commit 93fe40b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/sequencing/CommandPanel/CommandPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import type { CommandDictionary, FswCommand, HwCommand } from '@nasa-jpl/aerie-ampcs';
import type { EditorView } from 'codemirror';
import type { ArgTextDef, TimeTagInfo } from '../../../types/sequencing';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/commandInfoMapper';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/command-info-mapper';
import Tab from '../../ui/Tabs/Tab.svelte';
import TabPanel from '../../ui/Tabs/TabPanel.svelte';
import Tabs from '../../ui/Tabs/Tabs.svelte';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import { debounce } from 'lodash-es';
import { createEventDispatcher } from 'svelte';
import type { ArgTextDef, TimeTagInfo } from '../../../types/sequencing';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/commandInfoMapper';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/command-info-mapper';
import { addDefaultArgs, getMissingArgDefs } from '../../../utilities/sequence-editor/sequence-utils';
import { tooltip } from '../../../utilities/tooltip';
import AddMissingArgsButton from '../form/AddMissingArgsButton.svelte';
Expand Down
2 changes: 1 addition & 1 deletion src/components/sequencing/form/ArgEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import type { SyntaxNode } from '@lezer/common';
import type { CommandDictionary, FswCommandArgument } from '@nasa-jpl/aerie-ampcs';
import type { ArgTextDef } from '../../../types/sequencing';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/commandInfoMapper';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/command-info-mapper';
import {
getMissingArgDefs,
isFswCommandArgumentBoolean,
Expand Down
2 changes: 1 addition & 1 deletion src/components/sequencing/form/ArgTitle.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import type { FswCommandArgument } from '@nasa-jpl/aerie-ampcs';
import { isArray } from 'lodash-es';
import { getTarget } from '../../../utilities/generic';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/commandInfoMapper';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/command-info-mapper';
import {
isFswCommandArgumentFloat,
isFswCommandArgumentInteger,
Expand Down
2 changes: 1 addition & 1 deletion src/components/sequencing/form/ByteArrayEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<script lang="ts">
import type { SyntaxNode } from '@lezer/common';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/commandInfoMapper';
import type { CommandInfoMapper } from '../../../utilities/sequence-editor/command-info-mapper';
import { decodeInt32Array } from '../../../utilities/sequence-editor/sequence-utils';
export let argNode: SyntaxNode;
Expand Down

0 comments on commit 93fe40b

Please sign in to comment.