From bf69b2c2daeb2d5c1f9b1b3dfe99bfb62a739a9a Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 10 Feb 2026 02:42:15 +0000
Subject: [PATCH] =more CRUDSkeleton

---
 inc/meta/Form.php       |    2 +-
 inc/ui/CRUDSkeleton.php |   10 ++++------
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/inc/meta/Form.php b/inc/meta/Form.php
index 3b54486..2ad8dc9 100644
--- a/inc/meta/Form.php
+++ b/inc/meta/Form.php
@@ -87,7 +87,7 @@
 	// Helper Methods
 	// ─────────────────────────────────────────────────────────────
 
-	protected static function fieldWrap(string $name, string $content, array $config): string
+	public static function fieldWrap(string $name, string $content, array $config): string
 	{
 		$classes = static::buildClasses($config);
 		$datasets = static::buildDatasets($config);
diff --git a/inc/ui/CRUDSkeleton.php b/inc/ui/CRUDSkeleton.php
index d15ea2e..e74a010 100644
--- a/inc/ui/CRUDSkeleton.php
+++ b/inc/ui/CRUDSkeleton.php
@@ -1662,11 +1662,9 @@
 			<p class="description">You can unselect items by clicking the image here.</p>
 			<p class="hint"><strong>IMPORTANT: </strong> Whatever changes you make here will be applied to all selected <?=$this->plural?>.</p>
 			<div class="fields">
-				<div class="field-group radio-options row">
-					<?php
-					$this->getApplicableStatuses('bulk-');
-					?>
-				</div>
+				<?php
+				$this->getApplicableStatuses('bulk-');
+				?>
 				<?php
 				if (!empty($this->taxonomies)) {
 					?>
@@ -1736,6 +1734,6 @@
 			<?php
 		}
 		$out = ob_get_clean();
-		echo Form::buildInput($out);
+		echo Form::fieldWrap('post_status', $out, ['type'=>'group']);
 	}
 }

--
Gitblit v1.10.0