diff --git a/backend/tests/Squidex.Domain.Apps.Entities.Tests/Comments/CommentsCommandMiddlewareTests.cs b/backend/tests/Squidex.Domain.Apps.Entities.Tests/Comments/CommentsCommandMiddlewareTests.cs index b2c06eb46..c9779dade 100644 --- a/backend/tests/Squidex.Domain.Apps.Entities.Tests/Comments/CommentsCommandMiddlewareTests.cs +++ b/backend/tests/Squidex.Domain.Apps.Entities.Tests/Comments/CommentsCommandMiddlewareTests.cs @@ -142,16 +142,6 @@ namespace Squidex.Domain.Apps.Entities.Comments return new CommandContext(command, commandBus); } - private static bool IsForUser(ICommand command, string id) - { - return command is CreateComment createComment && - createComment.CommentsId == id && - createComment.Mentions == null && - createComment.AppId == null && - createComment.ExpectedVersion == EtagVersion.Any && - createComment.IsMention; - } - private void SetupUser(string id, string email) { var user = A.Fake(); diff --git a/frontend/app/features/content/pages/comments/comments-page.component.scss b/frontend/app/features/content/pages/comments/comments-page.component.scss index e69de29bb..6bb9a8b0e 100644 --- a/frontend/app/features/content/pages/comments/comments-page.component.scss +++ b/frontend/app/features/content/pages/comments/comments-page.component.scss @@ -0,0 +1,6 @@ +sqx-comments { + display: flex; + flex-direction: column; + flex-grow: 1; + height: 100%; +} \ No newline at end of file