Change website layout (#18)
* Add basic experiments page * Isolate experiment components * Fix grid on small screens * Change nav bar * Add padding to logo * Fix linking * Remove right margin on ExperimentCard flask * Change favicon * Use humanize in formatTimePast * Add TODO
This commit is contained in:
@@ -45,6 +45,15 @@ export const scenariosRouter = createTRPCRouter({
|
||||
: {},
|
||||
},
|
||||
});
|
||||
|
||||
await prisma.experiment.update({
|
||||
where: {
|
||||
id: input.experimentId,
|
||||
},
|
||||
data: {
|
||||
updatedAt: new Date(),
|
||||
},
|
||||
});
|
||||
}),
|
||||
|
||||
hide: publicProcedure.input(z.object({ id: z.string() })).mutation(async ({ input }) => {
|
||||
|
||||
Reference in New Issue
Block a user