Skip to content

Commit

Permalink
Fix: "Default" label of SMB Max Version dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
timopollmeier committed Apr 18, 2023
1 parent 3d564a7 commit 5b81450
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/web/pages/alerts/smbmethodpart.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import React from 'react';

import _ from 'gmp/locale';
import {_l} from 'gmp/locale/lang';

import {
SMB_CREDENTIAL_TYPES,
Expand All @@ -39,7 +40,7 @@ import TextField from 'web/components/form/textfield';
import NewIcon from 'web/components/icon/newicon';

const smbMaxProtocolItems = [
{label: _('Default'), value: ''},
{label: _l('Default'), value: ''},
{label: 'NT1', value: 'NT1'},
{label: 'SMB2', value: 'SMB2'},
{label: 'SMB3', value: 'SMB3'},
Expand Down

0 comments on commit 5b81450

Please sign in to comment.