code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/components/__snapshots__/NavigationTabBar.test.js.snap b/src/components/__snapshots__/NavigationTabBar.test.js.snap @@ -62,7 +62,7 @@ exports[`renders correctly 1`] = `
}
}
>
- <AnimatedComponent
+ <Component
style={
Array [
Object {
@@ -84,8 +84,8 @@ exports[`renders correctly 1`] = `
>
0
</Text>
- </... | 3 |
diff --git a/examples/hello_ml.html b/examples/hello_ml.html let enabled = false;
let mesher = null;
+ let planeTracker = null;
let eyeTracker = null;
const _enable = () => {
window.browser.nativeMl.RequestHand(_onHand);
mesher = window.browser.nativeMl.RequestMeshing();
mesher.onmesh = _onMesh;
- window.browser.native... | 4 |
diff --git a/Source/Core/CorridorOutlineGeometry.js b/Source/Core/CorridorOutlineGeometry.js @@ -3,6 +3,7 @@ define([
'./arrayRemoveDuplicates',
'./BoundingSphere',
'./Cartesian3',
+ './Check',
'./ComponentDatatype',
'./CornerType',
'./CorridorGeometryLibrary',
@@ -21,6 +22,7 @@ define([
arrayRemoveDuplicates,
Bounding... | 14 |
diff --git a/lib/github/oauth.js b/lib/github/oauth.js @@ -88,8 +88,7 @@ module.exports = (robot) => {
defaults: { userId, accessToken },
})
.then(([gitHubUser, created]) => {
- robot.log(gitHubUser.get({ plain: true }));
- robot.log(created);
+ robot.log({ created, gitHubUser }, 'Created and linked GitHubUser');
if (!... | 7 |
diff --git a/app/assets/stylesheets/editor-3/_context-switcher.scss b/app/assets/stylesheets/editor-3/_context-switcher.scss right: 392px;
}
.Editor-contextSwitcher.has-timeSeries {
- bottom: 167px;
+ bottom: 209px;
}
.Editor-contextSwitcher.has-timeSeries.has-timeSeries--animated {
- bottom: 190px;
+ bottom: 211px;
}
... | 1 |
diff --git a/token-metadata/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/metadata.json b/token-metadata/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/metadata.json "symbol": "XRT",
"address": "0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7",
"decimals": 9,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/token-metadata/0xdAC17F958D2ee523a2206206994597C13D831ec7/metadata.json b/token-metadata/0xdAC17F958D2ee523a2206206994597C13D831ec7/metadata.json "symbol": "USDT",
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"decimals": 6,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/renderer/marketplace/bank-accounts/list/offers-table.jsx b/src/renderer/marketplace/bank-accounts/list/offers-table.jsx @@ -53,6 +53,9 @@ const styles = theme => ({
width: '245px'
},
eligibilityCellBody: {
+ alignItems: 'center',
+ display: 'flex',
+ flexWrap: 'wrap',
paddingTop: '15px',
paddingBottom:... | 1 |
diff --git a/components/Bookmarks/BookmarkMiniFeed.js b/components/Bookmarks/BookmarkMiniFeed.js @@ -23,6 +23,10 @@ const BookmarkMiniFeed = ({ t, data, closeHandler, ...props }) => {
loading={data.loading}
error={data.error}
render={() => {
+ // only members have a bookmark collection
+ if (!data.me.collection) {
+ re... | 9 |
diff --git a/config/ember-try.js b/config/ember-try.js @@ -40,6 +40,8 @@ module.exports = async function () {
},
{
name: 'ember-canary',
+ // TODO: remove this once ember-basic-dropdown is compatible with canary again.
+ allowedToFail: true,
npm: {
devDependencies: {
'ember-source': await getChannelURL('canary'),
| 11 |
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -891,7 +891,7 @@ def run(out, err, url, username, password, encValData, mirror, search_query,
except multiprocessing.NotImplmentedError:
nprocesses = 1
- version = '1.09'
+ version = '1.10'
out.write("STARTING Checkfiles version %s (%s): with %d proces... | 3 |
diff --git a/public/index.js b/public/index.js @@ -556,8 +556,6 @@ $(function(){
var playerRoleContainer = $("#modal" + playerNum + " .role_container");
var playerRole = $("#modal" + playerNum + " .player_role");
- console.log('last_location', last_location);
-
if(socket){
if(players[playerName]){
@@ -756,6 +754,8 @@ $... | 1 |
diff --git a/tools/make/lib/addons/Makefile b/tools/make/lib/addons/Makefile @@ -25,7 +25,7 @@ FORTRAN_COMPILER ?= gfortran
install-addons: $(NODE_GYP)
$(QUIET) $(MAKE) -f $(this_file) list-pkgs-addons | while read -r pkg; do \
- if [[ "$$pkg" != /* ]]; then \
+ if echo "$$pkg" | grep -v '^\/.*' >/dev/null; then \
cont... | 7 |
diff --git a/src/snapshot/svgtoimg.js b/src/snapshot/svgtoimg.js @@ -89,11 +89,12 @@ function svgToImg(opts) {
imgData = url;
break;
default:
- reject(new Error('Image format is not jpeg, png or svg'));
+ var errorMsg = 'Image format is not jpeg, png, svg or webp.';
+ reject(new Error(errorMsg));
// eventually remove t... | 0 |
diff --git a/src/patterns/components/footer/react/code/footer.hbs b/src/patterns/components/footer/react/code/footer.hbs @@ -16,7 +16,7 @@ const globalItems = {
altText: 'Spark Logo',
mediaAddClasses: 'drizzle-c-Logo drizzle-c-Logo--small',
description: 'Lorem ipsum dolor sit amet, consectetur.',
- linkElement: 'a',
+ ... | 3 |
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -5196,6 +5196,243 @@ describe('Test axes', function() {
});
});
});
+
+ describe('label positioning using *ticklabelmode*: "period"', function() {
+ var gd;
+
+ beforeEach(function() {
+ gd = createGraphDiv();
+ });
+
+ afterEach(destroyG... | 0 |
diff --git a/app.js b/app.js @@ -13,6 +13,7 @@ import * as universe from './universe.js';
import minimap from './minimap.js';
import weaponsManager from './weapons-manager.js';
import cameraManager from './camera-manager.js';
+import {arrowGeometry, arrowMaterial} from './shaders.js';
import {renderer, scene, orthograp... | 0 |
diff --git a/packages/app/next.config.js b/packages/app/next.config.js +import eazyLogger from 'eazy-logger';
import { I18NextHMRPlugin } from 'i18next-hmr/plugin';
import { WebpackManifestPlugin } from 'webpack-manifest-plugin';
import { i18n, localePath } from './src/next-i18next.config';
import { listScopedPackages ... | 8 |
diff --git a/bin/definition-validator.js b/bin/definition-validator.js @@ -235,7 +235,14 @@ function runChildValidator(data) {
const validator = fn(data.validator, data);
data.validator = validator;
if (EnforcerRef.isEnforcerRef(validator)) {
+ if (data.definitionType === 'object') {
return new data.context[validator.v... | 1 |
diff --git a/token-metadata/0x43044f861ec040DB59A7e324c40507adDb673142/metadata.json b/token-metadata/0x43044f861ec040DB59A7e324c40507adDb673142/metadata.json "symbol": "CAP",
"address": "0x43044f861ec040DB59A7e324c40507adDb673142",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/scalene/scalene_profiler.py b/scalene/scalene_profiler.py @@ -20,6 +20,7 @@ import contextlib
import functools
import gc
import http.server
+import importlib.util
import inspect
import json
import math
@@ -38,8 +39,21 @@ import time
import traceback
import webbrowser
from collections import defaultdict
-fr... | 11 |
diff --git a/source/views/collections/ToolbarView.js b/source/views/collections/ToolbarView.js import { Class } from '../../core/Core';
import '../../foundation/ComputedProps'; // For Function#property
import '../../foundation/ObservableProps'; // For Function#observes
+import RunLoop from '../../foundation/RunLoop';
i... | 7 |
diff --git a/articles/connector/test-dc.md b/articles/connector/test-dc.md @@ -22,16 +22,23 @@ You can run your VM on any cloud platform, but this guide will walk through how
* Region: (your choice)
1. Click the **CREATE A VIRTUAL MACHINE** button. It will take a few minutes for the VM to provision.
1. Click on the **E... | 0 |
diff --git a/ghost/core/core/server/services/mega/post-email-serializer.js b/ghost/core/core/server/services/mega/post-email-serializer.js @@ -248,7 +248,14 @@ const serialize = async (postModel, newsletter, options = {isBrowserPreview: fal
const momentDate = post.published_at ? moment(post.published_at) : moment();
po... | 7 |
diff --git a/website/widgets/download.js b/website/widgets/download.js @@ -9,10 +9,10 @@ Download.ifchange=function(event){
Download.render=function(div, json){
$(div).append("<div id='pagebody' class='notop'><div class='pillarform'></div></div>"); var $div=$(div).find("div.pillarform");
- $div.append("<div class='titl... | 1 |
diff --git a/package.json b/package.json "prebuild:dev:watch": "npm run prebuild:dev",
"prebuild:dev": "npm run clean:app && env-cmd -f config/env.dev.js npm run plugin:def && env-cmd -f config/env.dev.js npm run resource",
"prebuild:prod": "npm run clean && env-cmd -f config/env.prod.js npm run plugin:def && env-cmd -... | 13 |
diff --git a/src/DOM.js b/src/DOM.js @@ -1850,7 +1850,7 @@ class HTMLIFrameElement extends HTMLSrcableElement {
this.width||context.canvas.ownerDocument.defaultView.innerWidth,
this.height||context.canvas.ownerDocument.defaultView.innerHeight,
url,
- path.join(this.ownerDocument.defaultView[symbols.optionsSymbol].dataP... | 10 |
diff --git a/Source/Scene/Camera.js b/Source/Scene/Camera.js @@ -2972,6 +2972,7 @@ function getPickRayOrthographic(camera, windowPosition, result) {
* @param {Cartesian2} windowPosition The x and y coordinates of a pixel.
* @param {Ray} [result] The object onto which to store the result.
* @returns {Ray} Returns the {@... | 3 |
diff --git a/src/components/Pagination/Pagination.jsx b/src/components/Pagination/Pagination.jsx @@ -231,10 +231,10 @@ export const Pagination = props => {
return (
<PaginationUI
- {...getValidProps(rest)}
data-testid="Pagination"
role="navigation"
aria-label="Pagination Navigation"
+ {...getValidProps(rest)}
className... | 11 |
diff --git a/src/workingtitle-vcockpits-instruments-airliners/html_ui/Pages/VCockpit/Instruments/Airliners/Shared/WT/AirspeedIndicator.js b/src/workingtitle-vcockpits-instruments-airliners/html_ui/Pages/VCockpit/Instruments/Airliners/Shared/WT/AirspeedIndicator.js @@ -351,7 +351,7 @@ class Jet_PFD_AirspeedIndicator ext... | 7 |
diff --git a/packages/inertia/src/files.ts b/packages/inertia/src/files.ts -export function hasFiles(data: File|FileList|Blob|unknown): boolean {
+import { FormDataConvertible, RequestPayload } from './types'
+
+export function hasFiles(data: RequestPayload|FormDataConvertible): boolean {
return (
data instanceof File ... | 7 |
diff --git a/bin/value.js b/bin/value.js module.exports = EnforcerValue;
-const defaultCoerce = false;
+const defaultPopulate = true;
const defaultSerialize = true;
const defaultValidate = true;
@@ -27,7 +27,7 @@ const defaultValidate = true;
* will be created with handling overwritten where specified.
* @param {*} val... | 2 |
diff --git a/articles/tutorials/dashboard-account-settings.md b/articles/tutorials/dashboard-account-settings.md @@ -84,7 +84,3 @@ The **Global Client ID** and **Global Client Secret** are used to generate token
You can configure how the Change Password widget will look like at the [Password Reset](${manage_url}/#/pass... | 2 |
diff --git a/plugins/cindygl/src/js/WebGL.js b/plugins/cindygl/src/js/WebGL.js @@ -512,10 +512,10 @@ webgl["random"] = first([
[], type.float, useincludefunction('random')
],
[
- [type.float], type.float, (a, cb) => (`${useincludefunction('random')([], cb)}*${a[0]}`)
+ [type.float], type.float, (a, modifs, cb) => (`${u... | 1 |
diff --git a/src/docs/languages/webc.md b/src/docs/languages/webc.md @@ -85,7 +85,8 @@ const pluginWebc = require("@11ty/eleventy-plugin-webc");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(pluginWebc, {
// Glob to find no-import global components
- components: false,
+ // (The default changed f... | 3 |
diff --git a/imports/ui/templates/components/decision/ballot/ballot.js b/imports/ui/templates/components/decision/ballot/ballot.js @@ -38,7 +38,6 @@ function getVoterContractBond(object) {
}
function activateDragging() {
- // Dragable options
let sortableIn;
this.$('#ballotOption, #proposalSuggestions').sortable({
stop... | 11 |
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -53,6 +53,7 @@ import particleSystemManager from './particle-system.js';
import domRenderEngine from './dom-renderer.jsx';
import dropManager from './drop-manager.js';
import hitManager from './character-hitter.js';
+import terrainManager from './terrain-manag... | 0 |
diff --git a/stories/module-analytics-settings.stories.js b/stories/module-analytics-settings.stories.js @@ -32,11 +32,7 @@ import {
import { MODULES_ANALYTICS_4 } from '../assets/js/modules/analytics-4/datastore/constants';
import { MODULES_TAGMANAGER } from '../assets/js/modules/tagmanager/datastore/constants';
impor... | 2 |
diff --git a/webpack.common.js b/webpack.common.js @@ -30,8 +30,7 @@ module.exports = (argv) => ({
'@babel/plugin-proposal-object-rest-spread'
]
}
- },
- exclude: /node_modules/
+ }
}, {
test: /\.coffee$/,
use: {
@@ -39,8 +38,7 @@ module.exports = (argv) => ({
options: {
bare: true
}
- },
- exclude: /node_modules/
+ }
... | 2 |
diff --git a/cli/templates/.env b/cli/templates/.env @@ -7,7 +7,7 @@ WEB_URL=http://localhost:3000
WEB_SERVER=true
WORKERS=1
-SERVER_TOKEN=my-serer-token
+SERVER_TOKEN=my-server-token
# By default, the config directory should be located in a folder named "config" within the root of your project. You can change that wit... | 1 |
diff --git a/test/channel-recipes.js b/test/channel-recipes.js @@ -61,10 +61,11 @@ test('action channel generator', assert => {
})
test('action channel generator with buffers', assert => {
- assert.plan(2)
+ assert.plan(3)
function* saga() {
- const chan = yield actionChannel('ACTION', buffers.dropping(1))
+ const buff... | 3 |
diff --git a/edit.js b/edit.js @@ -1073,22 +1073,38 @@ class CollisionRaycaster {
}
const collisionRaycaster = new CollisionRaycaster();
-const collisionCubeGeometry = new THREE.BoxBufferGeometry(0.1, 0.1, 0.1);
-const collisionCubeMaterial = new THREE.MeshBasicMaterial({
+const collisionCubeGeometry = new THREE.BoxBuf... | 0 |
diff --git a/src/UserConfig.js b/src/UserConfig.js @@ -235,15 +235,21 @@ class UserConfig {
this.collections[name] = callback;
}
- addPlugin(pluginCallback) {
+ addPlugin(plugin, options = {}) {
debug("Adding plugin (unknown name: check your config file).");
- if (typeof pluginCallback !== "function") {
+ if (typeof pl... | 0 |
diff --git a/src/handlers/choosingArticle.js b/src/handlers/choosingArticle.js @@ -23,7 +23,7 @@ function reorderArticleReplies(articleReplies) {
for (let articleReply of articleReplies) {
if (articleReply.reply.type !== 'NOT_ARTICLE') {
- replies.unshift(articleReply); // FIXME: reverse order until API blocker is reso... | 4 |
diff --git a/.travis.yml b/.travis.yml @@ -85,7 +85,6 @@ script:
if [[ "$E2E" == "1" ]]; then
npm run build || exit 1 # Build for tests.
npm run env:start || exit 1
- npm run env:reset-site || exit 1
npm run test:e2e:ci || exit 1 # E2E tests.
npm run env:stop || exit 1
fi
| 2 |
diff --git a/src/__percy__/panels.percy.js b/src/__percy__/panels.percy.js @@ -59,7 +59,7 @@ Object.keys(mocks).forEach(m => {
const panelGroup = words[0];
const panelName = words.slice(1, -1).join(' ');
- percySnapshot(`${m}_${p}`, {widths: [snapshotWidth]}, () =>
+ percySnapshot(`Panels: ${m}_${p}`, {widths: [snapsho... | 10 |
diff --git a/scripts/build.js b/scripts/build.js @@ -14,12 +14,42 @@ const inputOptions = {
plugins: [resolve({ browser: true }), commonjs(), babel()],
}
-const outputOptions = {
+let outputOptions = {
format: 'iife',
- name: 'appBundle',
+ name: 'APP_',
file: path.join(baseDir, '/dist/appBundle.js'),
}
+const getName ... | 12 |
diff --git a/_events/GatheringForOpenScienceHardware/GatheringForOpenScienceHardware.md b/_events/GatheringForOpenScienceHardware/GatheringForOpenScienceHardware.md title: Gathering For Open Science Hardware
subtitle: GOSH
website: http://openhardware.science/
-start-date: Sept/Oct 2018
+start-date: 2018-09-01
type-org... | 0 |
diff --git a/src/consumer/consumerGroup.js b/src/consumer/consumerGroup.js const flatten = require('../utils/flatten')
const sleep = require('../utils/sleep')
+const arrayDiff = require('../utils/arrayDiff')
const OffsetManager = require('./offsetManager')
const Batch = require('./batch')
const SeekOffsets = require('.... | 8 |
diff --git a/src/mixins/event-handlers.js b/src/mixins/event-handlers.js @@ -79,7 +79,9 @@ var EventHandlers = {
},
// invoked when swiping/dragging starts (just once)
swipeStart: function (e) {
+ if (e.target.tagName === 'IMG') {
e.preventDefault()
+ }
var touches, posX, posY;
// the condition after or looked redundan... | 0 |
diff --git a/conf/evolutions/default/40.sql b/conf/evolutions/default/40.sql @@ -15,40 +15,40 @@ DROP TABLE mission_progress_cvgroundtruth;
DELETE
FROM audit_task_interaction
-WHERE mission_id in
- (
+WHERE mission_id IN (
SELECT mission_id
- from mission
- inner join mission_type
- on mission.mission_type_id = mission... | 3 |
diff --git a/frontend/lost/src/tools/sia/src/components/properties/properties.styles.scss b/frontend/lost/src/tools/sia/src/components/properties/properties.styles.scss -o-user-select: none !important;
user-select: none !important;
- #sia-propview-canvas-container{
+ [data-ref="canvas-area"] {
grid-area: first;
display... | 7 |
diff --git a/articles/clients/index.md b/articles/clients/index.md @@ -47,6 +47,8 @@ Click on the [Settings](${manage_url}/#/clients/${account.clientId}/settings) ta
- **Name**: The name of your client. This information is editable and you will see in the portal, emails, logs, and so on.
+- **Description**: A free-text... | 0 |
diff --git a/lib/recurly/element/element.js b/lib/recurly/element/element.js @@ -204,13 +204,15 @@ export default class Element extends Emitter {
}
/**
- * Configures the element
+ * Configures the element, enforcing the config whitelist
*
- * @private
+ * @public
*/
configure (options = {}) {
if (!this._config) this._... | 3 |
diff --git a/Makefile b/Makefile @@ -168,8 +168,12 @@ deps:
cp third-party/soyutils.js $(APP_ENGINE_THIRD_PARTY)/
cp -R third-party/soundfonts $(APP_ENGINE_THIRD_PARTY)/
+ @# Blockly's externs include extra files we don't want.
+ rm -f $(APP_ENGINE_THIRD_PARTY)/blockly/externs/block-externs.js
+ rm -f $(APP_ENGINE_THIR... | 3 |
diff --git a/src/content/platform/routes.md b/src/content/platform/routes.md @@ -14,9 +14,9 @@ For zones proxied on Cloudflare\*, route patterns decide what (if any) script is
Route patterns can be added with the Cloudflare API or on the [Workers tab](https://dash.cloudflare.com/?zone=workers) in the Cloudflare dashboa... | 7 |
diff --git a/app/math-editor.js b/app/math-editor.js @@ -62,9 +62,7 @@ function init($outerPlaceholder, focus) {
return {
insertNewEquation,
insertMath,
- closeMathEditor,
- openMathEditor,
- onFocusChanged,
+ openMathEditor
}
function onMqEdit(e) {
| 2 |
diff --git a/src/components/dashboard/Reason.js b/src/components/dashboard/Reason.js // @flow
-import React, { useCallback } from 'react'
+import React from 'react'
import { StyleSheet, TouchableOpacity, View } from 'react-native'
import InputText from '../common/form/InputText'
import { Section, Wrapper } from '../com... | 2 |
diff --git a/buildspec.yml b/buildspec.yml @@ -8,6 +8,9 @@ phases:
- echo Entered the install phase...
- git submodule init
- git submodule update
+ - cd ./packages/totum
+ - git pull origin main
+ - cd ../../
pre_build:
commands:
- REPOSITORY_URI=907263135169.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/ecrrepository-app... | 0 |
diff --git a/scripts/build-plugins/rollup-plugin-build-themes.js b/scripts/build-plugins/rollup-plugin-build-themes.js @@ -31,29 +31,6 @@ function appendVariablesToCSS(variables, cssSource) {
return cssSource + getRootSectionWithVariables(variables);
}
-function findLocationFromThemeName(name, locations) {
- const them... | 4 |
diff --git a/src/asset_manager/view/FileUploader.js b/src/asset_manager/view/FileUploader.js @@ -285,6 +285,25 @@ module.exports = Backbone.View.extend(
return
}
+ var fileURL = URL.createObjectURL(file)
+ videoNode.src = fileURL
+ */
+
+ /*
+ // Show local video files
+ var file = this.files[0]
+ var type = file.type
... | 6 |
diff --git a/accessibility-checker-engine/src/v2/checker/accessibility/nls/index.ts b/accessibility-checker-engine/src/v2/checker/accessibility/nls/index.ts let a11yNls = {
// AU - DONE
"landmark_name_unique": {
- 0: "Multiple \"{0}\" landmarks should have a unique 'aria-labelledby' or 'aria-label' or be nested in a di... | 2 |
diff --git a/atlaspack.js b/atlaspack.js @@ -232,7 +232,7 @@ Atlas.prototype._ontoCanvas = function(node) {
// make sure we're always working with rects
Atlas.prototype._toRect = function(rect) {
// if rect is an image
- if ((rect.nodeName && (rect.nodeName === 'IMG' || rect.nodeName === 'CANVAS')) || rect instanceof I... | 0 |
diff --git a/src/components/nodes/pool/pool.vue b/src/components/nodes/pool/pool.vue @@ -508,7 +508,6 @@ export default {
invalidPool = pool.component.shape;
invalidPool.attr('body/fill', invalidNodeColor);
element.component.allowSetNodePosition = false;
-
} else {
this.paper.drawBackground({ color: defaultNodeColor })... | 1 |
diff --git a/server/services/searchBASE.php b/server/services/searchBASE.php @@ -11,7 +11,7 @@ $dirty_query = library\CommUtils::getParameter($_POST, "q");
$precomputed_id = (isset($_POST["unique_id"]))?($_POST["unique_id"]):(null);
$params_array = array("from", "to", "document_types", "sorting", "min_descsize");
-$opt... | 3 |
diff --git a/package.json b/package.json },
"dependencies": {
"@material-ui/core": "^3.1.0",
- "@reactioncommerce/components": "0.55.0",
+ "@reactioncommerce/components": "0.56.0",
"@reactioncommerce/components-context": "^1.0.0",
"@segment/snippet": "^4.3.1",
"apollo-cache-inmemory": "^1.1.11",
| 3 |
diff --git a/src/components/dashboard/ReceiveAmount.js b/src/components/dashboard/ReceiveAmount.js @@ -41,7 +41,7 @@ const AmountRow = props => {
return (
<Section.Row style={styles.tableRow}>
<Section.Text style={styles.tableRowLabel}>Amount:</Section.Text>
- <BigGoodDollar elementStyles={styles.bigGoodDollar} number=... | 3 |
diff --git a/lib/nodes/addon/components/driver-amazonec2/template.hbs b/lib/nodes/addon/components/driver-amazonec2/template.hbs {{#if config.encryptEbsVolume}}
<div class="col span-6 offset-6">
- {{#if loadFailedKmsKeys}}
<label class="acc-label">
{{t "clusterNew.amazoneks.secretsEncryption.kmsHelpLabel"}}
</label>
+ ... | 3 |
diff --git a/examples/react-native-expo/app.json b/examples/react-native-expo/app.json "sdkVersion": "31.0.0",
"platforms": ["ios", "android"],
"version": "1.0.0",
- "orientation": "portrait",
+ "orientation": "default",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
| 11 |
diff --git a/app/src/controllers/filter/reducer.js b/app/src/controllers/filter/reducer.js @@ -20,7 +20,7 @@ const updateFilterConditions = (filters, filterId, conditions) => {
export const launchesFiltersReducer = (state = [], { type, payload, meta: { oldId } = {} }) => {
switch (type) {
case FETCH_USER_FILTERS_SUCCES... | 14 |
diff --git a/test/TemplateRenderLiquidTest.js b/test/TemplateRenderLiquidTest.js @@ -57,17 +57,6 @@ test("Liquid Render Include with HTML Suffix and Data Pass in", async t => {
t.is((await fn()).trim(), "This is an include. myValue");
});
-// This is an upstream limitation of the Liquid implementation
-// test("Liquid ... | 0 |
diff --git a/src/components/legend/draw.js b/src/components/legend/draw.js @@ -508,6 +508,8 @@ function computeTextDimensions(g, gd, legendObj, aTitle) {
return;
}
+ var isVertical = helpers.isVertical(legendObj);
+
var mathjaxGroup = g.select('g[class*=math-group]');
var mathjaxNode = mathjaxGroup.node();
if(!legendOb... | 0 |
diff --git a/js/okx.js b/js/okx.js @@ -27,11 +27,11 @@ module.exports = class okx extends Exchange {
'future': true,
'option': undefined,
'addMargin': true,
+ 'borrowMargin': true,
'cancelAllOrders': undefined,
'cancelOrder': true,
'cancelOrders': true,
'createDepositAddress': undefined,
- 'createMarginLoan': true,
'cr... | 10 |
diff --git a/frontend/imports/ui/client/widgets/offermodal.html b/frontend/imports/ui/client/widgets/offermodal.html <th>OWNER</th>
<td><span class="owner-address">{{address}}</span></td>
</tr>
- <tr class="row-data-line">
- <th>Price</th>
- <td>{{{formatNumber offerPrice '' true}}} <span class="quote-currency">{{quote... | 11 |
diff --git a/src/content/en/fundamentals/performance/optimizing-content-efficiency/automating-image-optimization/index.md b/src/content/en/fundamentals/performance/optimizing-content-efficiency/automating-image-optimization/index.md @@ -2,8 +2,9 @@ project_path: /web/fundamentals/_project.yaml
book_path: /web/fundament... | 7 |
diff --git a/stats.js b/stats.js * @author jetienne / http://jetienne.com/
*/
+import metaversefile from 'metaversefile';
+const {useLocalPlayer} = metaversefile;
export var Stats = function () {
@@ -11,6 +13,7 @@ export var Stats = function () {
var frames = 0;
var beginTime = Date.now();
var lastTime = beginTime;
+ v... | 0 |
diff --git a/lib/route/feed.js b/lib/route/feed.js @@ -66,7 +66,7 @@ router.get('/:token/ical.ics', function(req, res){
});
} else {
- cal.name(user.full_name() + ' team');
+ cal.name(`${ user.full_name() }'s team whereabout`);
// Get the list of month deltas in relation to current month, to we can calculate
// moths f... | 10 |
diff --git a/assets/js/modules/analytics/common/account-select.js b/assets/js/modules/analytics/common/account-select.js @@ -34,7 +34,6 @@ export default function AccountSelect() {
const accounts = useSelect( ( select ) => select( STORE_NAME ).getAccounts() ) || [];
const accountID = useSelect( ( select ) => select( ST... | 2 |
diff --git a/token-metadata/0x9903A4Cd589DA8e434f264deAFc406836418578E/metadata.json b/token-metadata/0x9903A4Cd589DA8e434f264deAFc406836418578E/metadata.json "symbol": "FIRST",
"address": "0x9903A4Cd589DA8e434f264deAFc406836418578E",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/README.md b/README.md @@ -29,12 +29,18 @@ It runs directly on the vacuum and requires no cloud connection whatsoever.
### Getting started
-You'll find information on how to install valetudo in the deployment folder.
-
-If your vacuum is already rooted **and you know what you're doing**
-just download the l... | 7 |
diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/understand-string-immutability/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/understand-string-immutability/index.md @@ -3,8 +3,19 @@ title: Understand String Immutab... | 14 |
diff --git a/__tests__/frozen.js b/__tests__/frozen.js "use strict"
import deepFreeze from "deep-freeze"
-import produce, {setUseProxies} from "../src/"
+import produce, {setUseProxies, setAutoFreeze} from "../src/"
runTests("proxy", true)
runTests("es5", false)
@@ -8,6 +8,8 @@ runTests("es5", false)
function runTests(... | 1 |
diff --git a/articles/cms/wordpress/jwt-authentication.md b/articles/cms/wordpress/jwt-authentication.md @@ -4,7 +4,7 @@ description: Explains how to install the WordPress JWT Authentication and integr
# Wordpress JWT Authentication
-Auth0 provides a plugin to enable JWT authentication for your APIs. It is compatible w... | 0 |
diff --git a/src/client/js/components/PageEditor/LinkEditModal.jsx b/src/client/js/components/PageEditor/LinkEditModal.jsx @@ -50,7 +50,7 @@ class LinkEditModal extends React.PureComponent {
this.toggleIsUsePamanentLink = this.toggleIsUsePamanentLink.bind(this);
this.save = this.save.bind(this);
this.generateLink = thi... | 10 |
diff --git a/src/sections/Meshery/Meshery-integrations/IntegrationsGrid.js b/src/sections/Meshery/Meshery-integrations/IntegrationsGrid.js @@ -50,13 +50,12 @@ const IntegrationsGrid = ({ category, theme, count }) => {
];
const categoryCount = (categoryName) => {
- let k = 0;
- IntegrationList.map((integration) => {
+ r... | 14 |
diff --git a/lib/assets/core/javascripts/cartodb3/editor/editor-pane.js b/lib/assets/core/javascripts/cartodb3/editor/editor-pane.js @@ -342,6 +342,7 @@ module.exports = CoreView.extend({
switch (this._mapTabPaneView.getSelectedTabPaneName()) {
case 'widgets':
+ this._tooltipTitle = String;
if (this._widgetDefinitionsC... | 2 |
diff --git a/src/component/parent/props.js b/src/component/parent/props.js @@ -28,6 +28,10 @@ export function normalizeProp(component, instance, props, key, value) {
value = prop.decorate(value);
}
+ if (prop.value) {
+ value = prop.value;
+ }
+
if (prop.getter) {
if (!value) {
| 11 |
diff --git a/templates/formlibrary/filter.html b/templates/formlibrary/filter.html <span class="fa {% if program_id == 0 %} fa-angle-down {% else %} fa-filter {% endif %}"></span>
</button>
<ul class="dropdown-menu">
- <li class="{% if program_id == 0 %} active {% endif %}"><a href="/formlibrary/{{form_component}}/0/0/... | 3 |
diff --git a/src/utils/emoji-data.js b/src/utils/emoji-data.js @@ -226,7 +226,14 @@ export class EmojiIndex {
}
emoji(emojiId) {
- return this._emojis[emojiId]
+ if (this._data.aliases.hasOwnProperty(emojiId)) {
+ emojiId = this._data.aliases[emojiId]
+ }
+ let emoji = this._emojis[emojiId]
+ if (!emoji) {
+ throw new ... | 7 |
diff --git a/token-metadata/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/metadata.json b/token-metadata/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/metadata.json "symbol": "RCN",
"address": "0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/lib/waterline/methods/find-or-create.js b/lib/waterline/methods/find-or-create.js @@ -251,6 +251,6 @@ module.exports = function findOrCreate( /* criteria?, newRecord?, done?, meta? *
// > Note we set the `wasCreated` flag to `true` in this case.
return done(undefined, createdRecord, true);
- }, _.extend({f... | 0 |
diff --git a/tests/e2e/mu-plugins/e2e-assets.php b/tests/e2e/mu-plugins/e2e-assets.php @@ -17,7 +17,7 @@ add_action(
}
wp_enqueue_script(
- 'googlesitekit-e2e',
+ 'googlesitekit-e2e-utilities',
plugins_url( 'dist/assets/js/e2e-utilities.js', GOOGLESITEKIT_PLUGIN_MAIN_FILE ),
array(),
md5_file( plugin_dir_path( GOOGLESI... | 10 |
diff --git a/token-metadata/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/metadata.json b/token-metadata/0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd/metadata.json "symbol": "BURN",
"address": "0x8515cD0f00aD81996d24b9A9C35121a3b759D6Cd",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/plugins/proxy/index.js b/src/plugins/proxy/index.js @@ -19,16 +19,16 @@ export function prepareConfig(config) {
const swarmEnabled = config.swarm === true;
config.app.env = config.app.env || {};
+ config.app.docker = config.app.docker || {};
if (!swarmEnabled) {
config.app.env = addProxyEnv(config, con... | 12 |
diff --git a/runtime.js b/runtime.js @@ -24,7 +24,7 @@ const importMap = {
const _clone = o => JSON.parse(JSON.stringify(o));
// const thingFiles = {};
-const _loadGltf = async file => {
+const _loadGltf = async (file, {raw = false} = {}) => {
// const u = `${storageHost}/${hash}`;
const u = URL.createObjectURL(file);
... | 0 |
diff --git a/lib/modules/apostrophe-schemas/index.js b/lib/modules/apostrophe-schemas/index.js @@ -977,12 +977,13 @@ module.exports = {
converters: {
string: function(req, data, name, object, field, callback) {
object[name] = self.apos.launder.string(data[name], field.def);
- if (field.required && field.min && (object[... | 7 |
diff --git a/includes/Modules/TagManager.php b/includes/Modules/TagManager.php @@ -32,16 +32,6 @@ final class TagManager extends Module implements Module_With_Scopes {
const OPTION = 'googlesitekit_tagmanager_settings';
- /**
- * Temporary storage for very specific data for 'list-accounts' datapoint.
- *
- * Bad to hav... | 2 |
diff --git a/lib/builder.js b/lib/builder.js @@ -37,7 +37,12 @@ export default class Builder {
parseLogFile (jobState) {
const logFilePath = this.resolveLogFilePath(jobState)
if (fs.existsSync(logFilePath)) {
- const parser = this.getLogParser(logFilePath, jobState.getTexFilePath())
+ let filePath = jobState.getTexFile... | 8 |
diff --git a/includes/Modules/Site_Verification.php b/includes/Modules/Site_Verification.php @@ -150,6 +150,8 @@ final class Site_Verification extends Module implements Module_With_Scopes {
$sites = array();
if ( ! empty( $site['verified'] ) ) {
+ $this->authentication->verification()->set( true );
+
return $site;
} el... | 12 |
diff --git a/packages/remark-abbr/README.md b/packages/remark-abbr/README.md @@ -10,7 +10,7 @@ An abbreviation works the same as footnotes:
This plugin works on MDAST, a Markdown AST
implemented by [remark](https://github.com/wooorm/remark)
-*[HAST]: Markdown Abstract Syntax Tree.
+*[MDAST]: Markdown Abstract Syntax Tr... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.