Skip to content

Commit

Permalink
Drop unused idPrefix parameter from bootOrder
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed Oct 1, 2024
1 parent 366863c commit ef22e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/vm/overview/bootOrder.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ function getBootOrder(vm) {
return bootOrder;
}

export const BootOrderLink = ({ vm, idPrefix }) => {
export const BootOrderLink = ({ vm }) => {
const Dialogs = useDialogs();

function open() {
Expand Down
2 changes: 1 addition & 1 deletion src/components/vm/overview/vmOverviewCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class VmOverviewCard extends React.Component {
<DescriptionListGroup>
<DescriptionListTerm>{_("Boot order")}</DescriptionListTerm>
<DescriptionListDescription id={`${idPrefix}-boot-order`}>
<BootOrderLink vm={vm} idPrefix={idPrefix} />
<BootOrderLink vm={vm} />
</DescriptionListDescription>
</DescriptionListGroup>

Expand Down

0 comments on commit ef22e70

Please sign in to comment.