docs: rotate rooms

This commit is contained in:
Martin Kriegeskorte 2022-12-13 16:57:25 +01:00
parent c187e0e258
commit 14b166e7e8
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ import * as Y from 'yjs'
import MenuBar from './MenuBar' import MenuBar from './MenuBar'
const colors = ['#958DF1', '#F98181', '#FBBC88', '#FAF594', '#70CFF8', '#94FADB', '#B9F18D'] const colors = ['#958DF1', '#F98181', '#FBBC88', '#FAF594', '#70CFF8', '#94FADB', '#B9F18D']
const rooms = ['rooms.70', 'rooms.71', 'rooms.72'] const rooms = ['rooms.10', 'rooms.11', 'rooms.12']
const names = [ const names = [
'Lea Thompson', 'Lea Thompson',
'Cyndi Lauper', 'Cyndi Lauper',

View File

@ -40,9 +40,9 @@ const getRandomElement = list => {
const getRandomRoom = () => { const getRandomRoom = () => {
return getRandomElement([ return getRandomElement([
'rooms.70', 'rooms.10',
'rooms.71', 'rooms.11',
'rooms.72', 'rooms.12',
]) ])
} }