Merge branch 'devel' into release-3.2

This commit is contained in:
Nacho Codoñer
2025-03-05 14:37:37 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ module.exports = {
> The example config enables the `autoprefixer` postcss plugin. You can install the plugin by running `meteor npm install -D autoprefixer`.
Learn more about [configuring postcss](https://github.com/postcss/postcss-load-config#packagejson) or find a list of [available plugins](https://www.postcss.parts/).
Learn more about [configuring postcss](https://github.com/postcss/postcss-load-config#packagejson) or find a list of [available plugins](https://postcss.org/docs/postcss-plugins).
After making changes to the PostCSS Config, `meteor` must be restarted for it to use the new config.

View File

@@ -271,7 +271,7 @@ import { Accounts } from "meteor/accounts-base";
import { TasksCollection } from "/imports/api/TasksCollection";
const insertTask = (taskText, user) =>
TasksCollection.insert({
TasksCollection.insertAsync({
text: taskText,
userId: user._id,
createdAt: new Date(),