2018-04-08 16:56:20 -07:00
|
|
|
import StatusOptionsDialog from '../components/StatusOptionsDialog.html'
|
2019-02-18 16:27:59 -08:00
|
|
|
import { showDialog } from './showDialog'
|
2018-03-11 19:40:32 -07:00
|
|
|
|
2018-04-29 12:28:44 -07:00
|
|
|
export default function showStatusOptionsDialog (status) {
|
2019-02-18 16:27:59 -08:00
|
|
|
return showDialog(StatusOptionsDialog, {
|
2021-04-11 19:40:18 -07:00
|
|
|
label: 'intl.statusOptions',
|
2019-02-18 16:27:59 -08:00
|
|
|
title: '',
|
|
|
|
status: status
|
2018-03-11 19:40:32 -07:00
|
|
|
})
|
|
|
|
}
|