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
|
### 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] 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
|
### Bug fixes
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ export default [
|
|||||||
}
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
domain,
|
domain = 'WORKGROUP',
|
||||||
host,
|
host,
|
||||||
name,
|
name,
|
||||||
options,
|
options,
|
||||||
@ -120,7 +120,7 @@ export default [
|
|||||||
({ state, effects, formatMessage }) => {
|
({ state, effects, formatMessage }) => {
|
||||||
const {
|
const {
|
||||||
remote = {},
|
remote = {},
|
||||||
domain = remote.domain || '',
|
domain = remote.domain || 'WORKGROUP',
|
||||||
host = remote.host || '',
|
host = remote.host || '',
|
||||||
name = remote.name || '',
|
name = remote.name || '',
|
||||||
options = remote.options || '',
|
options = remote.options || '',
|
||||||
|
Loading…
Reference in New Issue
Block a user