Skip to content

Commit

Permalink
Add abbreviated model name as prefix to default column name.
Browse files Browse the repository at this point in the history
  • Loading branch information
oakdbca committed Oct 17, 2024
1 parent 7366f57 commit e5ff313
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ export default {
)[0]
this.$nextTick(() => {
this.enablePopovers();
this.selectedColumn.xlsx_column_header_name = this.selectedField.display_name
this.selectedColumn.xlsx_column_header_name = `${this.selectedContentType.model_abbreviation.toUpperCase()} ${this.selectedField.display_name}`
if (!this.selectedColumn.id) {
this.selectedColumn.xlsx_data_validation_allow_blank = this.selectedField.allow_null
}
Expand Down

0 comments on commit e5ff313

Please sign in to comment.