Revert "REVERT ME: make partial explorer available again"

This reverts commit ff5f1395ca.
pull/8464/head
Niklas Fiekas 2021-03-24 18:12:32 +01:00
parent 98c7de6051
commit c66b1d70fe
2 changed files with 2 additions and 11 deletions

View File

@ -21,9 +21,9 @@ export function controller(game: Game, onClose: () => void, trans: Trans, redraw
available,
selected:
available.length > 1
? storedProp('explorer.burned-db.' + variant, available[0])
? storedProp('explorer.db.' + variant, available[0])
: function () {
return available[available.length - 1]; // revert to 0
return available[0];
},
},
rating: {

View File

@ -307,15 +307,6 @@ function showEmpty(ctrl: AnalyseCtrl, opening?: Opening): VNode {
),
h('div.message', [
h('strong', ctrl.trans.noarg('noGameFound')),
h('p', [
'Note that so far only a few games have been restored after the ',
h(
'a',
{ attrs: { href: 'https://lichess.org/forum/lichess-feedback/fire-in-a-lichess-datacenter' } },
'recent data center fire'
),
'. Expect the complete database to be back by end of March.',
]),
ctrl.explorer.config.fullHouse()
? null
: h('p.explanation', ctrl.trans.noarg('maybeIncludeMoreGamesFromThePreferencesMenu')),