mirror of
https://github.com/discourse/discourse.git
synced 2025-03-02 07:23:06 +08:00
8 lines
195 B
Plaintext
8 lines
195 B
Plaintext
![]() |
export function outputExportResult(result) {
|
||
|
if (result.success) {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.success"));
|
||
|
} else {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.failed"));
|
||
|
}
|
||
|
}
|