Skip to content

Commit

Permalink
fix: Admin panel member since changed to date
Browse files Browse the repository at this point in the history
  • Loading branch information
Suneet Srivastava committed Nov 11, 2020
1 parent cbf8e2a commit 8f11cd0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/controllers/admin/users/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,12 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
{
name : 'Member Since',
valuePath : 'createdAt',
cellComponent : 'ui-table/cell/admin/users/cell-created-at',
cellComponent : 'ui-table/cell/cell-simple-date',
isSortable : true,
headerComponent : 'tables/headers/sort'
headerComponent : 'tables/headers/sort',
options : {
dateFormat: 'DD MMM, YYYY hh:mm A ([IST])'
}
},
{
name : 'Last Accessed',
Expand Down
9 changes: 9 additions & 0 deletions open-event-frontend.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

0 comments on commit 8f11cd0

Please sign in to comment.