feat(xo-web/remotes): use WORKGROUP as default SMB domain (#3398)
This commit is contained in:
parent
4fec816274
commit
d8bd30e355
@ -5,6 +5,7 @@
|
||||
### Enhancements
|
||||
|
||||
- [Remotes] Test the remote automatically on changes [#3323](https://github.com/vatesfr/xen-orchestra/issues/3323) (PR [#3397](https://github.com/vatesfr/xen-orchestra/pull/3397))
|
||||
- [Remotes] Use *WORKGROUP* as default domain for new SMB remote (PR [#3398](https://github.com/vatesfr/xen-orchestra/pull/3398))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
@ -78,7 +78,7 @@ export default [
|
||||
}
|
||||
|
||||
const {
|
||||
domain,
|
||||
domain = 'WORKGROUP',
|
||||
host,
|
||||
name,
|
||||
options,
|
||||
@ -120,7 +120,7 @@ export default [
|
||||
({ state, effects, formatMessage }) => {
|
||||
const {
|
||||
remote = {},
|
||||
domain = remote.domain || '',
|
||||
domain = remote.domain || 'WORKGROUP',
|
||||
host = remote.host || '',
|
||||
name = remote.name || '',
|
||||
options = remote.options || '',
|
||||
|
Loading…
Reference in New Issue
Block a user