mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 04:12:59 +00:00
Don't trigger row select event on first column (fixes #791)
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
- Fixed that decimal ingredient amounts maybe resulted in wrong conversions truncated decimal places if your locale does not use a dot as the decimal separator (thanks @m-byte)
|
- Fixed that decimal ingredient amounts maybe resulted in wrong conversions truncated decimal places if your locale does not use a dot as the decimal separator (thanks @m-byte)
|
||||||
- Fixed that a recipe cannot be included in itself (because this will cause an infinite loop) (thanks @fipwmaqzufheoxq92ebc)
|
- Fixed that a recipe cannot be included in itself (because this will cause an infinite loop) (thanks @fipwmaqzufheoxq92ebc)
|
||||||
- Fixed that when editing a recipe ingredient the checkbox "Disable stock fulfillment checking for this ingredient" was not initaliased with the saved value
|
- Fixed that when editing a recipe ingredient the checkbox "Disable stock fulfillment checking for this ingredient" was not initaliased with the saved value
|
||||||
|
- Fixed that when using the "+"-symbol (which appears on small screens only to expand columns which don't fit the screen) the page reloaded
|
||||||
|
|
||||||
### Chores improvements/fixes
|
### Chores improvements/fixes
|
||||||
- Changed that not assigned chores on the chores overview page display now just a dash instead of an ellipsis in the "Assigned to" column to make this more clear (thanks @Germs2004)
|
- Changed that not assigned chores on the chores overview page display now just a dash instead of an ellipsis in the "Assigned to" column to make this more clear (thanks @Germs2004)
|
||||||
|
@@ -5,7 +5,10 @@
|
|||||||
{ 'searchable': false, "targets": 0 },
|
{ 'searchable': false, "targets": 0 },
|
||||||
{ 'orderData': 2, 'targets': 1 }
|
{ 'orderData': 2, 'targets': 1 }
|
||||||
],
|
],
|
||||||
'select': 'single',
|
select: {
|
||||||
|
style: 'single',
|
||||||
|
selector: 'tr td:not(:first-child)'
|
||||||
|
},
|
||||||
'initComplete': function()
|
'initComplete': function()
|
||||||
{
|
{
|
||||||
this.api().row({ order: 'current' }, 0).select();
|
this.api().row({ order: 'current' }, 0).select();
|
||||||
|
Reference in New Issue
Block a user