зеркало из https://github.com/nextcloud/news.git
fix order by
This commit is contained in:
Родитель
2c397bd5c0
Коммит
5c63092dd7
|
@ -266,9 +266,9 @@ app.controller('ContentController',
|
||||||
|
|
||||||
this.orderBy = function () {
|
this.orderBy = function () {
|
||||||
if (SettingsResource.get('oldestFirst')) {
|
if (SettingsResource.get('oldestFirst')) {
|
||||||
return '-id';
|
|
||||||
} else {
|
|
||||||
return 'id';
|
return 'id';
|
||||||
|
} else {
|
||||||
|
return '-id';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -61,9 +61,9 @@ function (Publisher, FeedResource, ItemResource, SettingsResource, data,
|
||||||
|
|
||||||
this.orderBy = function () {
|
this.orderBy = function () {
|
||||||
if (SettingsResource.get('oldestFirst')) {
|
if (SettingsResource.get('oldestFirst')) {
|
||||||
return '-id';
|
|
||||||
} else {
|
|
||||||
return 'id';
|
return 'id';
|
||||||
|
} else {
|
||||||
|
return '-id';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -64,11 +64,11 @@ describe('ContentController', function () {
|
||||||
data: {},
|
data: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(ctrl.orderBy()).toBe('id');
|
expect(ctrl.orderBy()).toBe('-id');
|
||||||
|
|
||||||
SettingsResource.set('oldestFirst', true);
|
SettingsResource.set('oldestFirst', true);
|
||||||
|
|
||||||
expect(ctrl.orderBy()).toBe('-id');
|
expect(ctrl.orderBy()).toBe('id');
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче