Skip to content

Commit

Permalink
UI cosmetics for attachment table (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
muskansethi1 authored Jul 10, 2024
2 parents 683f039 + 8c1d08f commit ebe4335
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Version 1.1.5

### Changed

- Set width for columns for Attachments table UI.

## Version 1.1.4

### Changed
Expand Down
10 changes: 5 additions & 5 deletions index.cds
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ annotate Attachments with @UI:{
TypeNamePlural: '{i18n>Attachments}',
},
LineItem: [
{Value: content},
{Value: status},
{Value: createdAt},
{Value: createdBy},
{Value: note}
{Value: content, @HTML5.CssDefaults: {width: '30%'}},
{Value: status, @HTML5.CssDefaults: {width: '10%'}},
{Value: createdAt, @HTML5.CssDefaults: {width: '20%'}},
{Value: createdBy, @HTML5.CssDefaults: {width: '15%'}},
{Value: note, @HTML5.CssDefaults: {width: '25%'}}
]
} {
content
Expand Down

0 comments on commit ebe4335

Please sign in to comment.